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

This commit is contained in:
Karim Ahmed
2025-08-03 18:48:24 +01:00
parent 32960af1dc
commit 603219d6d6

View File

@@ -1105,7 +1105,6 @@ Vector2 GetWindowScaleDPI(void)
#else #else
scale.x = SDL_GetWindowDisplayScale(platform.window); scale.x = SDL_GetWindowDisplayScale(platform.window);
scale.y = scale.x; scale.y = scale.x;
TRACELOG(LOG_INFO, "WindowScaleDPI is %f", scale.x);
#endif #endif
return scale; return scale;