summaryrefslogtreecommitdiff
path: root/noncore/games/sfcave-sdl/util.cpp
Side-by-side diff
Diffstat (limited to 'noncore/games/sfcave-sdl/util.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/games/sfcave-sdl/util.cpp19
1 files changed, 15 insertions, 4 deletions
diff --git a/noncore/games/sfcave-sdl/util.cpp b/noncore/games/sfcave-sdl/util.cpp
index 86738ad..f73e256 100644
--- a/noncore/games/sfcave-sdl/util.cpp
+++ b/noncore/games/sfcave-sdl/util.cpp
@@ -37,3 +37,3 @@ Uint32 getpixel(SDL_Surface *surface, int x, int y)
-const char *chooseRandomFile( string path, string fileType )
+string chooseRandomFile( string path, string fileType )
{
@@ -52,6 +52,4 @@ const char *chooseRandomFile( string path, string fileType )
string tmp = file.substr( pos );
- printf( "pos = %d, tmp =%s\n", pos, tmp.c_str() );
if ( tmp.size() > 0 && fileType.find( tmp ) != -1 )
{
- printf( "Matching <%s> - %s with <%s>\n", file.substr( pos ).c_str(), file.c_str(), fileType.c_str() );
files.push_back( file );
@@ -62,3 +60,16 @@ const char *chooseRandomFile( string path, string fileType )
closedir( d );
- return files[nextInt( files.size() )].c_str();
+ return files[nextInt( files.size() )];
+}
+
+
+string getHomeDir()
+{
+ string home;
+#ifdef QWS
+ home = getenv( "HOME" );
+#else
+ home = ".";
+#endif
+
+ return home;
}