summaryrefslogtreecommitdiffstats
path: root/src/app/system_other.h
diff options
context:
space:
mode:
authorDidier 'OdyX' Raboud <didier@raboud.com>2013-10-23 14:22:20 +0200
committerPiotr Dziwinski <piotrdz@gmail.com>2013-10-24 21:12:52 +0200
commit97baf7242e49dd09d67b5c94441f983d61eaaeb3 (patch)
treee6ed02f31e8859cc7f951449dd9c55d187de7426 /src/app/system_other.h
parent591ba30a0051c856c8b877b8687f071e0212e28c (diff)
downloadcolobot-97baf7242e49dd09d67b5c94441f983d61eaaeb3.tar.gz
colobot-97baf7242e49dd09d67b5c94441f983d61eaaeb3.tar.bz2
colobot-97baf7242e49dd09d67b5c94441f983d61eaaeb3.zip
Fix system_other implementation by adding an Init() and fixing the wrong const
Diffstat (limited to 'src/app/system_other.h')
-rw-r--r--src/app/system_other.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/app/system_other.h b/src/app/system_other.h
index b10a326..7eccf3f 100644
--- a/src/app/system_other.h
+++ b/src/app/system_other.h
@@ -40,10 +40,11 @@ struct SystemTimeStamp
class CSystemUtilsOther : public CSystemUtils
{
public:
+ virtual void Init() {};
virtual SystemDialogResult SystemDialog(SystemDialogType type, const std::string& title, const std::string& message) override;
virtual void GetCurrentTimeStamp(SystemTimeStamp *stamp) override;
- virtual long long GetTimeStampExactResolution() override;
+ virtual long long int GetTimeStampExactResolution() override;
virtual long long TimeStampExactDiff(SystemTimeStamp *before, SystemTimeStamp *after) override;
};