danpost wrote...
Oh my. Lines 111 and 112 in your GameWorld class put both lines of text to the same location. Change one (or both of) them to put to different locations.
showText("Highscore : "+high_1, 100,100);
+"\n"+
showText("Highscore : "+high_2, 200,200); showText("Highscore : "+high_1, 100,100);
+"\n"+
showText("Highscore : "+high_2, 200,200);showText("Highscore P1: "+high_1+"\nHighscore P2: "+high_2, 100, 100);public void showStatus()
{
showText("Highscore: "+Math.max(high_1, high+2), 100, 100);
}