mirror of
https://github.com/libretro/ppsspp.git
synced 2025-03-05 15:07:17 +00:00
Merge pull request #7257 from hilesaz/master
Fix matrix disassembly notation
This commit is contained in:
commit
5e97a287c0
@ -460,7 +460,10 @@ const char *GetMatrixNotation(int reg, MatrixSize size)
|
||||
default: c='?'; break;
|
||||
}
|
||||
if (transpose && c=='M') c='E';
|
||||
sprintf(hej[yo],"%c%i%i%i",c,mtx,col,row);
|
||||
if (transpose)
|
||||
sprintf(hej[yo],"%c%i%i%i",c,mtx,row,col);
|
||||
else
|
||||
sprintf(hej[yo],"%c%i%i%i",c,mtx,col,row);
|
||||
return hej[yo];
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user