summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-11-29 20:13:29 +0100
committerLioncash <mathew1800@gmail.com>2014-11-29 20:13:29 +0100
commit4f28861008e16557dfd3dfb2d35942365ab710b2 (patch)
tree07279c4fee07d0ba693fc88b0f57441cb7a5ad56 /src
parentMerge pull request #227 from vaguilar/fix-warnings (diff)
downloadyuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.tar
yuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.tar.gz
yuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.tar.bz2
yuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.tar.lz
yuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.tar.xz
yuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.tar.zst
yuzu-4f28861008e16557dfd3dfb2d35942365ab710b2.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/dyncom/arm_dyncom_interpreter.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
index f899e2e8a..aa2b271e7 100644
--- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
+++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
@@ -94,9 +94,8 @@ typedef unsigned int (*shtop_fp_t)(arm_processor *cpu, unsigned int sht_oper);
/* exclusive memory access */
static int exclusive_detect(ARMul_State* state, ARMword addr){
- int i;
#if 0
- for(i = 0; i < 128; i++){
+ for(int i = 0; i < 128; i++){
if(state->exclusive_tag_array[i] == addr)
return 0;
}
@@ -108,9 +107,8 @@ static int exclusive_detect(ARMul_State* state, ARMword addr){
}
static void add_exclusive_addr(ARMul_State* state, ARMword addr){
- int i;
#if 0
- for(i = 0; i < 128; i++){
+ for(int i = 0; i < 128; i++){
if(state->exclusive_tag_array[i] == 0xffffffff){
state->exclusive_tag_array[i] = addr;
//DEBUG_LOG(ARM11, "In %s, add addr 0x%x\n", __func__, addr);