summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/sfcave/sfcave.cpp15
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
@@ -4,8 +4,9 @@
#include <time.h>
#include <opie2/oapplicationfactory.h>
#include <qpe/config.h>
+#include <qpe/global.h>
#include <qapplication.h>
#include <qdir.h>
@@ -142,11 +143,9 @@ 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();
sHeight = height();
segSize = sWidth/(MAPSIZE-1)+1;
@@ -923,12 +922,12 @@ void SFCave :: saveScore()
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;
}
// Build up string of values
@@ -954,15 +953,15 @@ void SFCave :: saveReplay()
fwrite( (const char *)val, 1, val.length(), out );
fclose( out );
- printf( "Replay saved to %s\n", (const char *)replayFile );
+ printf( "Replay saved to %s\n", QFile::encodeName(replayFile).data() );
}
void SFCave :: loadReplay()
{
- FILE *in = fopen( (const char *)replayFile, "r" );
+ FILE *in = fopen( QFile::encodeName(replayFile).data() , "r" );
if ( in == 0 )
{
printf( "Couldn't load replay file!\n" );
@@ -1002,9 +1001,9 @@ void SFCave :: loadReplay()
delete data;
fclose( in );
- printf( "Replay loaded from %s\n", (const char *)replayFile );
+ printf( "Replay loaded from %s\n", QFile::encodeName(replayFile).data() );
}
//--------------- MENU CODE ---------------------