Update main.c
Fixed interface Scale in MacOS in get_scale function
This commit is contained in:
parent
b6af395fc7
commit
1687bbd92d
|
@ -18,9 +18,13 @@
|
||||||
SDL_Window *window;
|
SDL_Window *window;
|
||||||
|
|
||||||
static double get_scale(void) {
|
static double get_scale(void) {
|
||||||
|
#ifdef __APPLE__
|
||||||
|
return 1.0;
|
||||||
|
#else
|
||||||
float dpi = 96.0;
|
float dpi = 96.0;
|
||||||
SDL_GetDisplayDPI(0, NULL, &dpi, NULL);
|
SDL_GetDisplayDPI(0, NULL, &dpi, NULL);
|
||||||
return dpi / 96.0;
|
return dpi / 96.0;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue