diff options
author | Patric Stout <truebrain@openttd.org> | 2018-04-29 14:12:23 +0200 |
---|---|---|
committer | Patric Stout <truebrain@openttd.org> | 2018-04-29 15:32:16 +0200 |
commit | 85adde74858161240860ed9e4bf67f9be838de45 (patch) | |
tree | c49c092551d1b9070afe61447c412b9f0f107a11 /src/os/unix | |
parent | 8d8b9a026a5915c2bf4591b74d79dfa1dcf791d8 (diff) | |
download | openttd-85adde74858161240860ed9e4bf67f9be838de45.tar.xz |
Remove: PSP support
Diffstat (limited to 'src/os/unix')
-rw-r--r-- | src/os/unix/unix.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/os/unix/unix.cpp b/src/os/unix/unix.cpp index d7c2304ce..bea69ec93 100644 --- a/src/os/unix/unix.cpp +++ b/src/os/unix/unix.cpp @@ -308,9 +308,7 @@ bool GetClipboardContents(char *buffer, const char *last) void CSleep(int milliseconds) { - #if defined(PSP) - sceKernelDelayThread(milliseconds * 1000); - #elif defined(__BEOS__) + #if defined(__BEOS__) snooze(milliseconds * 1000); #elif defined(__AMIGA__) { |