1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-07-04 06:54:33 +00:00

remove useless parentheses

This commit is contained in:
Random 2020-04-08 20:24:46 +02:00
parent 0c0c15018f
commit 6975b35591

View file

@ -24,5 +24,5 @@ void Sleep_Msec(u32 ms) {
} }
void Sleep_Sec(u32 sec) { void Sleep_Sec(u32 sec) {
Sleep_Cycles((sec * OS_CPU_COUNTER)); Sleep_Cycles(sec * OS_CPU_COUNTER);
} }