xp tracker: fix on-screen information type label

This commit is contained in:
Lotto
2019-05-15 20:38:09 +02:00
parent 3e59f38893
commit 09595863cd

View File

@@ -110,12 +110,12 @@ class XpInfoBoxOverlay extends Overlay
rightNum = snapshot.getActionsRemainingToGoal();
break;
case XP_LEFT:
leftStr = config.onScreenDisplayMode().toString();
leftStr = "XP Left";
rightNum = snapshot.getXpRemainingToGoal();
break;
case XP_GAINED:
default:
leftStr = config.onScreenDisplayMode().toString();
leftStr = "XP Gained";
rightNum = snapshot.getXpGainedInSession();
break;
}