Browse Source

Removed verbose logging on SDL3. Happens every time the property is read!

pull/5084/head
Karim Ahmed 3 months ago
parent
commit
603219d6d6
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/platforms/rcore_desktop_sdl.c

+ 1
- 2
src/platforms/rcore_desktop_sdl.c View File

@ -1104,8 +1104,7 @@ Vector2 GetWindowScaleDPI(void)
TRACELOG(LOG_WARNING, "GetWindowScaleDPI() not implemented on target platform");
#else
scale.x = SDL_GetWindowDisplayScale(platform.window);
scale.y = scale.x;
TRACELOG(LOG_INFO, "WindowScaleDPI is %f", scale.x);
scale.y = scale.x;
#endif
return scale;

Loading…
Cancel
Save