mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
New version of WM_USER_GET_BASE_POINTER
This commit is contained in:
parent
53f961acf5
commit
6f9d6c6c5f
@ -781,10 +781,10 @@ namespace MainWindow
|
||||
case WM_USER_GET_BASE_POINTER:
|
||||
Reporting::NotifyDebugger();
|
||||
switch (lParam) {
|
||||
case 0:
|
||||
return (u32)(u64)Memory::base;
|
||||
case 1:
|
||||
return (u32)((u64)Memory::base >> 32);
|
||||
case 0: return (u32)(u64)Memory::base;
|
||||
case 1: return (u32)((u64)Memory::base >> 32);
|
||||
case 2: return (u32)(u64)(&Memory::base);
|
||||
case 3: return (u32)((u64)(&Memory::base) >> 32);
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user