summaryrefslogtreecommitdiffstats
path: root/src/app/system.cpp
diff options
context:
space:
mode:
authorDidier Raboud <odyx@debian.org>2013-03-27 10:20:06 +0100
committerDidier Raboud <odyx@debian.org>2013-03-27 10:20:06 +0100
commit991dbd1e37366b43b790740beb2fef755c56dcba (patch)
tree5491e5177e10ab998c3d928a9d5aa4722c50c017 /src/app/system.cpp
parentdf5edc703c7241279116d2bbfe08351d0c3c2a4b (diff)
downloadcolobot-991dbd1e37366b43b790740beb2fef755c56dcba.tar.gz
colobot-991dbd1e37366b43b790740beb2fef755c56dcba.tar.bz2
colobot-991dbd1e37366b43b790740beb2fef755c56dcba.zip
Add profile and savegame fetchers in SystemUtils
This breaks the tests compilation. :/
Diffstat (limited to 'src/app/system.cpp')
-rw-r--r--src/app/system.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/app/system.cpp b/src/app/system.cpp
index 6927af8..743ed96 100644
--- a/src/app/system.cpp
+++ b/src/app/system.cpp
@@ -187,3 +187,13 @@ float CSystemUtils::TimeStampDiff(SystemTimeStamp *before, SystemTimeStamp *afte
return result;
}
+
+std::string CSystemUtils::profileFileLocation()
+{
+ return std::string("colobot.ini");
+}
+
+std::string CSystemUtils::savegameDirectoryLocation()
+{
+ return std::string("savegame");
+}