mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 21:41:19 +12:00
Replace unsigned int with uint32
This commit is contained in:
parent
e2eedc7b2c
commit
055ac72e40
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ static uint32 ppc_cmp_and_mask[8] = {
|
|||
};
|
||||
|
||||
|
||||
#define ppc_word_rotl(_data, _n) (std::rotl<unsigned int>(_data,(_n)&0x1F))
|
||||
#define ppc_word_rotl(_data, _n) (std::rotl<uint32>(_data,(_n)&0x1F))
|
||||
|
||||
static inline uint32 ppc_mask(int MB, int ME)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue