`if` is not a function.

fixes #628
This commit is contained in:
unknown 2015-09-25 17:26:27 -04:00
parent 97cdd04ac0
commit fe442fca6e
1 changed files with 16 additions and 16 deletions

View File

@ -619,8 +619,8 @@ void Compile_COP2 (void) {
void Compile_LB ( void ) { void Compile_LB ( void ) {
int Offset = (short)RSPOpC.offset; int Offset = (short)RSPOpC.offset;
if(RSPOpC.rt == 0) return; if (RSPOpC.rt == 0)
return;
#ifndef Compile_GPRLoads #ifndef Compile_GPRLoads
Cheat_r4300iOpcode(RSP_Opcode_LB,"RSP_Opcode_LB"); return; Cheat_r4300iOpcode(RSP_Opcode_LB,"RSP_Opcode_LB"); return;
#endif #endif
@ -651,8 +651,8 @@ void Compile_LH ( void ) {
int Offset = (short)RSPOpC.offset; int Offset = (short)RSPOpC.offset;
BYTE * Jump[2]; BYTE * Jump[2];
if(RSPOpC.rt == 0) return; if (RSPOpC.rt == 0)
return;
#ifndef Compile_GPRLoads #ifndef Compile_GPRLoads
Cheat_r4300iOpcode(RSP_Opcode_LH,"RSP_Opcode_LH"); return; Cheat_r4300iOpcode(RSP_Opcode_LH,"RSP_Opcode_LH"); return;
#endif #endif
@ -715,8 +715,8 @@ void Compile_LW ( void ) {
int Offset = (short)RSPOpC.offset; int Offset = (short)RSPOpC.offset;
BYTE * Jump[2]; BYTE * Jump[2];
if(RSPOpC.rt == 0) return; if (RSPOpC.rt == 0)
return;
#ifndef Compile_GPRLoads #ifndef Compile_GPRLoads
Cheat_r4300iOpcode(RSP_Opcode_LW,"RSP_Opcode_LW"); return; Cheat_r4300iOpcode(RSP_Opcode_LW,"RSP_Opcode_LW"); return;
#endif #endif
@ -792,8 +792,8 @@ void Compile_LW ( void ) {
void Compile_LBU ( void ) { void Compile_LBU ( void ) {
int Offset = (short)RSPOpC.offset; int Offset = (short)RSPOpC.offset;
if(RSPOpC.rt == 0) return; if (RSPOpC.rt == 0)
return;
#ifndef Compile_GPRLoads #ifndef Compile_GPRLoads
Cheat_r4300iOpcode(RSP_Opcode_LBU,"RSP_Opcode_LBU"); return; Cheat_r4300iOpcode(RSP_Opcode_LBU,"RSP_Opcode_LBU"); return;
#endif #endif
@ -826,8 +826,8 @@ void Compile_LHU ( void ) {
int Offset = (short)RSPOpC.offset; int Offset = (short)RSPOpC.offset;
BYTE * Jump[2]; BYTE * Jump[2];
if(RSPOpC.rt == 0) return; if (RSPOpC.rt == 0)
return;
#ifndef Compile_GPRLoads #ifndef Compile_GPRLoads
Cheat_r4300iOpcode(RSP_Opcode_LHU,"RSP_Opcode_LHU"); return; Cheat_r4300iOpcode(RSP_Opcode_LHU,"RSP_Opcode_LHU"); return;
#endif #endif