diff options
Diffstat (limited to 'src/GameLoop.cpp')
-rw-r--r-- | src/GameLoop.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GameLoop.cpp b/src/GameLoop.cpp index ab8d545..2fa7fc1 100644 --- a/src/GameLoop.cpp +++ b/src/GameLoop.cpp @@ -309,7 +309,7 @@ void Game::EventLoop() if (score > highscore) { highscore=score; /* TODO */ - ofstream opstream("Data/Highscore"); + ofstream opstream("highscore.txt"); opstream << highscore; opstream << "\n"; opstream << beatgame; |