v0.4.1: fixed a no text found error

This commit is contained in:
Evan Debenham
2016-06-27 19:25:27 -04:00
parent 3fcd7f9556
commit edf59848d0

View File

@@ -297,7 +297,7 @@ public class RankingsScene extends PixelScene {
if (rec.gameFile.length() > 0) {
parent.add( new WndRanking( rec.gameFile ) );
} else {
parent.add( new WndError( Messages.get(this, "no_info") ) );
parent.add( new WndError( Messages.get(RankingsScene.class, "no_info") ) );
}
}
}