From 9c22203ab6b1f6f61ec4b7c52a7c9c51da9e5844 Mon Sep 17 00:00:00 2001 From: relnev Date: Wed, 8 Jan 2003 07:32:05 +0000 Subject: rename the alut functions so we can fix the filenames (and since the functions are in cvs but WAVFile is not exactly the same). sad hacks for o/ifstream filenames... git-svn-id: svn://svn.icculus.org/blackshades/trunk@43 5198baeb-e213-0410-be47-fc2ff85ca46f --- Source/GameLoop.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Source/GameLoop.cpp') diff --git a/Source/GameLoop.cpp b/Source/GameLoop.cpp index ca166f2..843ed10 100644 --- a/Source/GameLoop.cpp +++ b/Source/GameLoop.cpp @@ -323,7 +323,12 @@ void Game::EventLoop( void ) highscore=score; - ofstream opstream(":Data:Highscore"); +#ifdef MAC + ofstream opstream(":Data:Highscore"); +#else + /* TODO */ + ofstream opstream("Data/Highscore"); +#endif opstream << highscore; -- cgit v1.2.3