diff options
| author | Marko Pusljar <LM1234@gmail.com> | 2009-11-12 16:17:22 +0000 |
|---|---|---|
| committer | Marko Pusljar <LM1234@gmail.com> | 2009-11-12 16:17:22 +0000 |
| commit | b858befba24c8a31cab82dd7534b91e5606db5e9 (patch) | |
| tree | e6f93b20423a730670373141aeace08d2daf498d /Source/Plugins/Plugin_VideoSoftware | |
| parent | 1ba75a05d0be3e5f37a54b4b19ce62ebc11ee3e6 (diff) | |
DSPLLE small mul fix
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4533 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware')
| -rw-r--r-- | Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp index 6f80adb1ae..f92d2cc3e1 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp +++ b/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp @@ -129,7 +129,7 @@ LRESULT CALLBACK WndProc( HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam ) switch( iMsg )
{
case WM_CREATE:
- PostMessage(m_hMain, WM_USER, OPENGL_WM_USER_CREATE, (int)m_hParent);
+ PostMessage(m_hMain, WM_USER, WM_USER_CREATE, (int)m_hParent);
break;
case WM_PAINT:
@@ -164,7 +164,7 @@ LRESULT CALLBACK WndProc( HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam ) else if (!g_Config.renderToMainframe)
{
// And stops the emulation when already in Windowed mode
- PostMessage(m_hMain, WM_USER, OPENGL_WM_USER_STOP, 0);
+ PostMessage(m_hMain, WM_USER, WM_USER_STOP, 0);
}
break;
}
|
