Browse Source

fixed error

MrCypher 7 tháng trước cách đây
mục cha
commit
b695721e0b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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)