Recover matching status
This commit is contained in:
parent
1acc0961d4
commit
30c462a8ef
4 changed files with 12 additions and 26 deletions
|
|
@ -57,8 +57,8 @@ u32 OSUncachedToCached(void *ucaddr);
|
|||
|
||||
#define OSDiffTick(tick1, tick0) ((s32)(tick1) - (s32)(tick0))
|
||||
|
||||
#define OSRoundUp32B(x) (((u32)(x) + 0x1F) & ~(0x1F))
|
||||
#define OSRoundDown32B(x) (((u32)(x)) & ~(0x1F))
|
||||
#define OSRoundUp32B(x) (((size_t)(x) + 0x1F) & ~(0x1F))
|
||||
#define OSRoundDown32B(x) (((size_t)(x)) & ~(0x1F))
|
||||
|
||||
#define OSRoundUp(x, align) (((x) + (align)-1) & (-(align)))
|
||||
#define OSRoundUpPtr(x, align) ((void*)((((u32)(x)) + (align)-1) & (~((align)-1))))
|
||||
|
|
|
|||
|
|
@ -197,8 +197,8 @@ static inline void GWRumbleSet(s32 value)
|
|||
{
|
||||
GWGameStat.rumble = value;
|
||||
if (value == 0) {
|
||||
// TODO: get rumble working
|
||||
// HuPadRumbleAllStop();
|
||||
// TODO PC: get rumble working
|
||||
HuPadRumbleAllStop();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue