mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-02 05:07:51 +00:00
CoreTiming: avoid overflow
This commit is contained in:
parent
00c34e4df7
commit
d63a76f4ce
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@
|
|||
extern int g_clock_rate_arm11;
|
||||
|
||||
inline s64 msToCycles(int ms) {
|
||||
return g_clock_rate_arm11 / 1000 * ms;
|
||||
return (s64)g_clock_rate_arm11 / 1000 * ms;
|
||||
}
|
||||
|
||||
inline s64 msToCycles(float ms) {
|
||||
|
|
Loading…
Reference in a new issue