Skip to content

Commit

Permalink
Remove debug logs regarding High DPI.
Browse files Browse the repository at this point in the history
  • Loading branch information
Arignir committed Oct 17, 2024
1 parent 94d3d86 commit c0343a7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions source/app/sdl/video.c
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,6 @@ app_sdl_video_init(
default: break;
}

printf("Creating window with size %ux%u\n", app->ui.display.win.width, app->ui.display.win.height);

// Create the SDL window
app->sdl.window = SDL_CreateWindow(
"Hades",
Expand Down Expand Up @@ -217,8 +215,6 @@ app_sdl_video_resize_window(
// If relevant, expand the window by the size of the menubar
h += app->settings.video.menubar_mode == MENUBAR_MODE_FIXED_ABOVE_GAME ? app->ui.menubar.size.y : 0;

printf("Resizing to %ux%u\n", w, h);

SDL_SetWindowSize(app->sdl.window, w, h);
}

Expand Down

0 comments on commit c0343a7

Please sign in to comment.