Browse Source

Merge pull request #5084 from kariem2k/fix_cmake_sdl3

Removed verbose logging on SDL3.
pull/4810/merge
Ray 2 months ago
committed by GitHub
parent
commit
b4ecfb648d
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
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

@ -1103,8 +1103,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