mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-22 01:40:30 +00:00
Disasm transposed vectors properly.
This commit is contained in:
parent
7f9516fce4
commit
be631dea64
@ -278,7 +278,10 @@ const char *GetVectorNotation(int reg, VectorSize size)
|
||||
case V_Quad: c='C'; row=(reg>>5)&2; break;
|
||||
}
|
||||
if (transpose && c == 'C') c='R';
|
||||
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