diff --git a/Source/ui_win32/Debugger.cpp b/Source/ui_win32/Debugger.cpp index 9d60a000..6c637d8b 100644 --- a/Source/ui_win32/Debugger.cpp +++ b/Source/ui_win32/Debugger.cpp @@ -350,18 +350,20 @@ void CDebugger::FindEeFunctions() //Identify functions that reference special string literals (TODO: Move that inside a file) static const std::map stringFuncs = { - { "SceSifrpcBind", "SifBindRpc" }, - { "SceSifrpcCall", "SifCallRpc" }, - { "call cdread cmd\n", "CdRead" }, - { "sceGsExecLoadImage: DMA Ch.2 does not terminate\r\n", "GsExecLoadImage" }, - { "sceGsExecStoreImage: DMA Ch.1 does not terminate\r\n", "GsExecStoreImage" }, - { "sceGsPutDrawEnv: DMA Ch.2 does not terminate\r\n", "GsPutDrawEnv" }, - { "sceGsSetDefLoadImage: too big size\r\n", "GsSetDefLoadImage" }, - { "sceGsSyncPath: DMA Ch.1 does not terminate\r\n", "GsSyncPath" }, - { "libpad: buffer addr is not 64 byte align. %08x\n", "PadPortOpen" }, - { "sceDbcReceiveData: rpc error\n", "DbcReceiveData" }, - { "sceDbcSendData: rpc error\n", "DbcSendData" }, - { "sceDbcSendData2: rpc error\n", "DbcSendData2" }, + { "SceSifrpcBind", "SifBindRpc" }, + { "SceSifrpcCall", "SifCallRpc" }, + { "call cdread cmd\n", "CdRead" }, + { "sceGsExecLoadImage: DMA Ch.2 does not terminate\r\n", "GsExecLoadImage" }, + { "sceGsExecStoreImage: DMA Ch.1 does not terminate\r\n", "GsExecStoreImage" }, + { "sceGsPutDrawEnv: DMA Ch.2 does not terminate\r\n", "GsPutDrawEnv" }, + { "sceGsSetDefLoadImage: too big size\r\n", "GsSetDefLoadImage" }, + { "sceGsSyncPath: DMA Ch.1 does not terminate\r\n", "GsSyncPath" }, + { "libpad: buffer addr is not 64 byte align. %08x\n", "PadPortOpen" }, + { "sceDbcReceiveData: rpc error\n", "DbcReceiveData" }, + { "sceDbcSendData: rpc error\n", "DbcSendData" }, + { "sceDbcSendData2: rpc error\n", "DbcSendData2" }, + { "The size of work area is too small", "MpegCreate" }, + { "Need to re-setup libipu since sceMpegGetPicture was aborted\n", "_MpegInternalFct" }, }; {