diff options
author | Eugene Sandulenko | 2016-03-30 19:27:59 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-03-30 19:27:59 +0200 |
commit | 73784c6a8488fef1ca7e6971a12868735d606de7 (patch) | |
tree | 7189644cbe7087e7c3b3e09ec74252ae315f4c5c /common | |
parent | bd249ee32489140d4556e9107adfaaa695a84f4a (diff) | |
download | scummvm-rg350-73784c6a8488fef1ca7e6971a12868735d606de7.tar.gz scummvm-rg350-73784c6a8488fef1ca7e6971a12868735d606de7.tar.bz2 scummvm-rg350-73784c6a8488fef1ca7e6971a12868735d606de7.zip |
UPDATES: Made interval set/get functions accept normal integers
Diffstat (limited to 'common')
-rw-r--r-- | common/updates.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/updates.h b/common/updates.h index 4c30987c38..8863a58931 100644 --- a/common/updates.h +++ b/common/updates.h @@ -85,14 +85,14 @@ public: * * @param interval The interval. */ - virtual void setUpdateCheckInterval(UpdateInterval interval) {} + virtual void setUpdateCheckInterval(int interval) {} /** * Gets the update check interval. * * @return the update check interval. */ - virtual UpdateInterval getUpdateCheckInterval() { return kUpdateIntervalNotSupported; } + virtual int getUpdateCheckInterval() { return kUpdateIntervalNotSupported; } }; } // End of namespace Common |