disabled some OSPanic messages

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@29 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
fires.gc 2008-07-20 08:52:00 +00:00
parent 2c6baf9abb
commit 35950043a6
1 changed files with 3 additions and 2 deletions

View File

@ -212,7 +212,8 @@ void psq_st(UGeckoInstruction inst)
}
else {
// Dodger uses this.
PanicAlert("st %i:%i", stType, inst.W);
// mario tennis
//PanicAlert("st %i:%i", stType, inst.W);
Default(inst);
}
}
@ -311,7 +312,7 @@ void psq_l(UGeckoInstruction inst)
// 4 0
// 6 0 //power tennis
// 5 0
PanicAlert("ld:%i %i", ldType, (int)inst.W);
//PanicAlert("ld:%i %i", ldType, (int)inst.W);
Default(inst);
return;
}