diff options
| author | Soren Jorvang <soren.jorvang@gmail.com> | 2011-01-10 16:18:41 +0000 |
|---|---|---|
| committer | Soren Jorvang <soren.jorvang@gmail.com> | 2011-01-10 16:18:41 +0000 |
| commit | 601eab79e177dad76fadd405ae6383ed4c093aef (patch) | |
| tree | f0d634efe93679f51d36f215a151163f2a702b52 /Source/Core | |
| parent | f9e4e73e428ea0ce594fb2017272fc47d447f2fa (diff) | |
Properly resize the GL canvas on window changes with USE_WX and wx 2.9.
Fixes issue 2524.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6803 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_fs.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_fs.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_fs.cpp index aeabec888b..1b3ab64796 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_fs.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_fs.cpp @@ -155,7 +155,7 @@ bool CWII_IPC_HLE_Device_fs::IOCtlV(u32 _CommandAddress) if ((CommandBuffer.InBuffer.size() == 1) && (CommandBuffer.PayloadBuffer.size() == 1)) { size_t numFile = FileSearch.GetFileNames().size(); - INFO_LOG(WII_IPC_FILEIO, "\t%lu Files found", (u32)numFile); + INFO_LOG(WII_IPC_FILEIO, "\t%lu Files found", (unsigned long)numFile); Memory::Write_U32((u32)numFile, CommandBuffer.PayloadBuffer[0].m_Address); } |
