diff options
Diffstat (limited to 'engines/wintermute/PlatformSDL.cpp')
-rw-r--r-- | engines/wintermute/PlatformSDL.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/wintermute/PlatformSDL.cpp b/engines/wintermute/PlatformSDL.cpp index 9eb1970f11..37270d8834 100644 --- a/engines/wintermute/PlatformSDL.cpp +++ b/engines/wintermute/PlatformSDL.cpp @@ -167,7 +167,7 @@ int CBPlatform::SDLEventWatcher(void *userdata, Common::Event *event) { // Win32 API bindings
//////////////////////////////////////////////////////////////////////////
HINSTANCE CBPlatform::ShellExecute(HWND hwnd, LPCSTR lpOperation, LPCSTR lpFile, LPCSTR lpParameters, LPCSTR lpDirectory, int nShowCmd) {
- return NULL;
+ return 0;
}
//////////////////////////////////////////////////////////////////////////
@@ -236,7 +236,7 @@ bool CBPlatform::CopyFile(const char *from, const char *to, bool failIfExists) { //////////////////////////////////////////////////////////////////////////
HWND CBPlatform::SetCapture(HWND hWnd) {
- return NULL;
+ return 0;
}
//////////////////////////////////////////////////////////////////////////
|