summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar bunnei2014-03-30 02:13:25 -0400
committerGravatar bunnei2014-03-30 02:13:25 -0400
commit4fdeadb8e2f008122df9b2c532ae0661c0b545d3 (patch)
tree4b0dfebc47f7f3969c1a60e98bdad0891277bf21 /src
parentremoved unnecessary debug assert (diff)
downloadyuzu-4fdeadb8e2f008122df9b2c532ae0661c0b545d3.tar.gz
yuzu-4fdeadb8e2f008122df9b2c532ae0661c0b545d3.tar.xz
yuzu-4fdeadb8e2f008122df9b2c532ae0661c0b545d3.zip
replaced some error logs with debug asserts
Diffstat (limited to 'src')
-rw-r--r--src/core/src/arm/arminit.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/src/arm/arminit.cpp b/src/core/src/arm/arminit.cpp
index d394be66c..f48232eec 100644
--- a/src/core/src/arm/arminit.cpp
+++ b/src/core/src/arm/arminit.cpp
@@ -436,8 +436,7 @@ ARMul_DoProg (ARMul_State * state)
436 } 436 }
437 437
438 else { 438 else {
439 //pc = ARMul_Emulate26 (state); Commented out /bunnei 439 _dbg_assert_msg_(ARM11, false, "Unsupported ARM 26-bit Mode!");
440 ERROR_LOG(ARM11, "Unsupported ARM 26-bit Mode!");
441 } 440 }
442 //chy 2006-02-22, should test debugmode first 441 //chy 2006-02-22, should test debugmode first
443 //chy 2006-04-14, put below codes in ARMul_Emulate 442 //chy 2006-04-14, put below codes in ARMul_Emulate
@@ -491,8 +490,7 @@ ARMul_DoInstr (ARMul_State * state)
491 } 490 }
492 491
493 else { 492 else {
494 //pc = ARMul_Emulate26 (state); Commented out /bunnei 493 _dbg_assert_msg_(ARM11, false, "Unsupported ARM 26-bit Mode!");
495 ERROR_LOG(ARM11, "Unsupported ARM 26-bit Mode!");
496 } 494 }
497 495
498 return (pc); 496 return (pc);