diff options
author | Cameron Cawley | 2019-11-10 16:34:25 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2019-11-17 22:33:56 +0100 |
commit | f2b9f7bb76c041825bef1dcee3abf17d923898da (patch) | |
tree | 9ead87f005a086b6c1cb2cfe4e81d846e3e691dc /engines/sky | |
parent | c5a5e0f68a8d740f37f234e773988e8f58273466 (diff) | |
download | scummvm-rg350-f2b9f7bb76c041825bef1dcee3abf17d923898da.tar.gz scummvm-rg350-f2b9f7bb76c041825bef1dcee3abf17d923898da.tar.bz2 scummvm-rg350-f2b9f7bb76c041825bef1dcee3abf17d923898da.zip |
BACKENDS: Remove the Windows CE port
Diffstat (limited to 'engines/sky')
-rw-r--r-- | engines/sky/control.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/engines/sky/control.cpp b/engines/sky/control.cpp index 83088db889..a7c39f7f6a 100644 --- a/engines/sky/control.cpp +++ b/engines/sky/control.cpp @@ -1553,9 +1553,6 @@ void Control::delay(unsigned int amount) { } uint this_delay = 20; // 1? -#ifdef _WIN32_WCE - this_delay = 10; -#endif if (this_delay > amount) this_delay = amount; |