We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eab381c commit 092abf9Copy full SHA for 092abf9
1 file changed
src/ruisapp/glue/sdl/glue.cxx
@@ -331,6 +331,7 @@ ruis::real get_dpi(int display_index = 0)
331
if (SDL_GetDisplayDPI(display_index, &dpi, nullptr, nullptr) != 0) {
332
throw std::runtime_error(utki::cat("Could not get SDL display DPI, SDL Error: ", SDL_GetError()));
333
}
334
+ // std::cout << "get_dpi(): dpi = " << dpi << std::endl;
335
return ruis::real(dpi);
336
337
0 commit comments