diff options
author | Jonathan Gray | 2003-07-13 13:57:19 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-07-13 13:57:19 +0000 |
commit | bc1120b67ac85447cbb3dae5402c86451f7d9103 (patch) | |
tree | f7ec9fc1dfb7c16a368dfe1b5e02af21084cab1b | |
parent | 70866ef72f026bd92e6ec8c56a750676263cddf1 (diff) | |
download | scummvm-rg350-bc1120b67ac85447cbb3dae5402c86451f7d9103.tar.gz scummvm-rg350-bc1120b67ac85447cbb3dae5402c86451f7d9103.tar.bz2 scummvm-rg350-bc1120b67ac85447cbb3dae5402c86451f7d9103.zip |
linux/mingw compilation fix pointed out by Jeroen Janssen
svn-id: r8984
-rw-r--r-- | backends/fs/windows/windows-fs.cpp | 2 | ||||
-rw-r--r-- | common/stdafx.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/fs/windows/windows-fs.cpp b/backends/fs/windows/windows-fs.cpp index c42d592574..412c131c2e 100644 --- a/backends/fs/windows/windows-fs.cpp +++ b/backends/fs/windows/windows-fs.cpp @@ -25,7 +25,7 @@ #include <stdio.h> #include <stdlib.h> #include <windows.h> -#include <TCHAR.h> +#include <tchar.h> /* * Implementation of the ScummVM file system API based on Windows API. diff --git a/common/stdafx.h b/common/stdafx.h index a5a82e70ad..9b834d3c5a 100644 --- a/common/stdafx.h +++ b/common/stdafx.h @@ -83,7 +83,7 @@ #include <assert.h> #include <mmsystem.h> #include <ctype.h> -#include <Winuser.h> +#include <winuser.h> #include <direct.h> #else |