소스 검색

fixed error

MrCypher 7 달 전
부모
커밋
b695721e0b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      GUI.py

+ 1 - 1
GUI.py

@@ -40,7 +40,7 @@ highScoreName = ""
 if currentScore > highestScore :
     highestScore = currentScore
     f = open("scores.txt", "rw")
-    #f.write(highestScore + highScoreName)
+    f.write(str(highestScore) + highScoreName)
     scores.append(highestScore)
     names.append(highScoreName)