diff options
author | Alexander Tkachev | 2016-05-11 15:15:23 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:05:07 +0600 |
commit | 7446ffd73bd184610d550a354a8e252b0b7f334d (patch) | |
tree | 66527d233886549ed881230f275cb3ebeb9c94a4 /base | |
parent | 52240c68c7301b941f51ea315994ee7e4665707b (diff) | |
download | scummvm-rg350-7446ffd73bd184610d550a354a8e252b0b7f334d.tar.gz scummvm-rg350-7446ffd73bd184610d550a354a8e252b0b7f334d.tar.bz2 scummvm-rg350-7446ffd73bd184610d550a354a8e252b0b7f334d.zip |
CLOUD: Integrate CloudThread into OSystem
Would be changed soon.
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/base/main.cpp b/base/main.cpp index 593179d80e..ce69117bc6 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -477,10 +477,10 @@ extern "C" int scummvm_main(int argc, const char * const argv[]) { } #endif - CloudThread thread; - Common::TimerManager *manager = system.getTimerManager(); - if (!manager->installTimerProc(cloudThread, 1000000, &thread, "Cloud Thread")) - warning("Failed to create cloud thread"); + //TODO: define USE_CLOUD +//#ifdef USE_CLOUD + system.getCloudThread()->start(); +//#endif // Unless a game was specified, show the launcher dialog if (0 == ConfMan.getActiveDomain()) |