mirror of https://github.com/PCSX2/pcsx2.git
Fix NOT32M function declaration.
Use uptr as the argument since it is either u32 or u64 depending on architecture.
This commit is contained in:
parent
69f57351b2
commit
8c746302a2
|
@ -442,7 +442,7 @@ extern void AND8RtoR( x86IntRegType to, x86IntRegType from );
|
|||
// not r32
|
||||
extern void NOT32R( x86IntRegType from );
|
||||
// not m32
|
||||
extern void NOT32M( u32 from );
|
||||
extern void NOT32M( uptr from );
|
||||
// neg r32
|
||||
extern void NEG32R( x86IntRegType from );
|
||||
// neg m32
|
||||
|
|
Loading…
Reference in New Issue