-rw-r--r-- | noncore/games/sfcave/sfcave.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/noncore/games/sfcave/sfcave.cpp b/noncore/games/sfcave/sfcave.cpp index 5dca427..d5aa38a 100644 --- a/noncore/games/sfcave/sfcave.cpp +++ b/noncore/games/sfcave/sfcave.cpp @@ -6,4 +6,5 @@ #include <opie2/oapplicationfactory.h> #include <qpe/config.h> +#include <qpe/global.h> #include <qapplication.h> @@ -144,7 +145,5 @@ SFCave :: SFCave( QWidget *w, const char *name, WFlags fl ) replayIt = 0; - replayFile = QDir::home().path(); - replayFile += "/sfcave.replay"; - printf( "%s\n", (const char *)replayFile ); + replayFile = Global::applicationFileName("sfcave", "replay"); sWidth = width(); @@ -925,8 +924,8 @@ void SFCave :: saveReplay() { FILE *out; - out = fopen( (const char *)replayFile, "w" ); + out = fopen( QFile::encodeName(replayFile).data(), "w" ); if ( !out ) { - printf( "Couldn't write to /home/root/sfcave.replay\n" ); + printf( "Couldn't write to %s\n", QFile::encodeName(replayFile).data() ); return; } @@ -956,5 +955,5 @@ void SFCave :: saveReplay() fclose( out ); - printf( "Replay saved to %s\n", (const char *)replayFile ); + printf( "Replay saved to %s\n", QFile::encodeName(replayFile).data() ); } @@ -962,5 +961,5 @@ void SFCave :: saveReplay() void SFCave :: loadReplay() { - FILE *in = fopen( (const char *)replayFile, "r" ); + FILE *in = fopen( QFile::encodeName(replayFile).data() , "r" ); if ( in == 0 ) @@ -1004,5 +1003,5 @@ void SFCave :: loadReplay() fclose( in ); - printf( "Replay loaded from %s\n", (const char *)replayFile ); + printf( "Replay loaded from %s\n", QFile::encodeName(replayFile).data() ); } |