mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-26 00:34:45 +02:00
Merge pull request #19922 from hrydgard/adhoc-logging-fixes
Paper over the problems of the hlecall stack
This commit is contained in:
+4
-2
@@ -710,7 +710,8 @@ static void updateSyscallStats(int modulenum, int funcnum, double total)
|
||||
}
|
||||
|
||||
static void CallSyscallWithFlags(const HLEFunction *info) {
|
||||
_dbg_assert_(g_stackSize == 0);
|
||||
// _dbg_assert_(g_stackSize == 0);
|
||||
g_stackSize = 0;
|
||||
|
||||
const int stackSize = g_stackSize;
|
||||
if (stackSize == 0) {
|
||||
@@ -749,7 +750,8 @@ static void CallSyscallWithFlags(const HLEFunction *info) {
|
||||
}
|
||||
|
||||
static void CallSyscallWithoutFlags(const HLEFunction *info) {
|
||||
_dbg_assert_(g_stackSize == 0);
|
||||
// _dbg_assert_(g_stackSize == 0);
|
||||
g_stackSize = 0;
|
||||
|
||||
const int stackSize = g_stackSize;
|
||||
if (stackSize == 0) {
|
||||
|
||||
Reference in New Issue
Block a user