mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Debugger: Fix random FPU/VFPU selection.
This commit is contained in:
parent
fcc90095f7
commit
8f155dba32
1 changed files with 1 additions and 1 deletions
|
@ -1216,7 +1216,7 @@ void JitCompareScreen::OnRandomBlock(int flag) {
|
|||
currentBlock_ = rand() % numBlocks;
|
||||
JitBlockDebugInfo b = blockCache->GetBlockDebugInfo(currentBlock_);
|
||||
u32 mipsBytes = (u32)b.origDisasm.size() * 4;
|
||||
for (u32 addr = b.originalAddress; addr <= b.originalAddress + mipsBytes; addr += 4) {
|
||||
for (u32 addr = b.originalAddress; addr < b.originalAddress + mipsBytes; addr += 4) {
|
||||
MIPSOpcode opcode = Memory::Read_Instruction(addr);
|
||||
if (MIPSGetInfo(opcode) & flag) {
|
||||
char temp[256];
|
||||
|
|
Loading…
Add table
Reference in a new issue