From 5b735361e831de8148762e37fc4e2f91346f1453 Mon Sep 17 00:00:00 2001 From: LPFaint99 Date: Sat, 1 Aug 2009 19:11:05 +0000 Subject: [PATCH] InputCommon now builds in unicode git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3922 8ced0084-cf51-0410-be5f-012b33b47a6e --- Externals/wxWidgets/include/wx/msw/setup0.h | 2 +- Externals/wxWidgets/include/wx/setup.h | 2 +- Source/Core/InputCommon/InputCommon.vcproj | 12 ++++++------ Source/Core/InputCommon/Src/Configuration.cpp | 3 ++- Source/Core/InputCommon/Src/DirectInputBase.cpp | 7 ++++--- 5 files changed, 14 insertions(+), 12 deletions(-) diff --git a/Externals/wxWidgets/include/wx/msw/setup0.h b/Externals/wxWidgets/include/wx/msw/setup0.h index 5df4a4ec17..2029455526 100644 --- a/Externals/wxWidgets/include/wx/msw/setup0.h +++ b/Externals/wxWidgets/include/wx/msw/setup0.h @@ -157,7 +157,7 @@ // // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP) #ifndef wxUSE_UNICODE - #define wxUSE_UNICODE 0 + #define wxUSE_UNICODE 1 #endif // Setting wxUSE_WCHAR_T to 1 gives you some degree of Unicode support without diff --git a/Externals/wxWidgets/include/wx/setup.h b/Externals/wxWidgets/include/wx/setup.h index 61bfdabd7b..2a76999984 100644 --- a/Externals/wxWidgets/include/wx/setup.h +++ b/Externals/wxWidgets/include/wx/setup.h @@ -157,7 +157,7 @@ // // Recommended setting: 0 (unless you only plan to use Windows NT/2000/XP) #ifndef wxUSE_UNICODE - #define wxUSE_UNICODE 0 + #define wxUSE_UNICODE 1 #endif // Setting wxUSE_WCHAR_T to 1 gives you some degree of Unicode support without diff --git a/Source/Core/InputCommon/InputCommon.vcproj b/Source/Core/InputCommon/InputCommon.vcproj index e559e1d688..aa67c3656a 100644 --- a/Source/Core/InputCommon/InputCommon.vcproj +++ b/Source/Core/InputCommon/InputCommon.vcproj @@ -24,7 +24,7 @@ OutputDirectory="$(PlatformName)\$(ConfigurationName)" IntermediateDirectory="$(PlatformName)\$(ConfigurationName)" ConfigurationType="4" - CharacterSet="0" + CharacterSet="1" WholeProgramOptimization="0" > CreateDevice(GUID_SysKeyboard, &g_pKeyboard, NULL))) { - MessageBox(0, "Couldn't access keyboard", 0, MB_ICONERROR); + MessageBox(0, L"Couldn't access keyboard", 0, MB_ICONERROR); Free(); return(hr); }