1
0
mirror of https://github.com/zeldaret/oot.git synced 2024-09-21 12:54:51 +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) {
Sleep_Cycles((sec * OS_CPU_COUNTER));
Sleep_Cycles(sec * OS_CPU_COUNTER);
}