Remove trailing spaces

This commit is contained in:
Ray
2026-03-16 17:51:53 +01:00
parent e0d3037e15
commit 1eea511070
4 changed files with 19 additions and 19 deletions

View File

@ -2126,11 +2126,11 @@ int InitPlatform(void)
//----------------------------------------------------------------------------
// Get base time from window initialization
CORE.Time.base = (double)(SDL_GetPerformanceCounter()/SDL_GetPerformanceFrequency());
#if defined(_WIN32) && SUPPORT_WINMM_HIGHRES_TIMER && !SUPPORT_BUSY_WAIT_LOOP
SDL_SetHint(SDL_HINT_TIMER_RESOLUTION, "1"); // SDL equivalent of timeBeginPeriod() and timeEndPeriod()
#endif
// NOTE: No need to call InitTimer(), let SDL manage it internally
//----------------------------------------------------------------------------