Skip to content

Commit

Permalink
sort config.c
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Sep 12, 2024
1 parent a7df3a8 commit 12c23d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ void cfg_load()
GET_INT(g_config.save_settings, "savesettings", 1);
GET_BOOL(g_config.resizable, "resizable", TRUE);
GET_INT(g_config.d3d9_filter, "d3d9_filter", FILTER_CUBIC);
GET_INT(g_config.anti_aliased_fonts_min_size, "anti_aliased_fonts_min_size", 13);
GET_INT(g_config.min_font_size, "min_font_size", 0);
GET_BOOL(g_config.vhack, "vhack", FALSE);
GET_STRING("screenshotdir", ".\\Screenshots\\", g_config.screenshot_dir, sizeof(g_config.screenshot_dir));
GET_BOOL(g_config.toggle_borderless, "toggle_borderless", FALSE);
Expand Down Expand Up @@ -84,9 +86,7 @@ void cfg_load()
GET_BOOL(g_config.rgb555, "rgb555", FALSE);
GET_BOOL(g_config.no_dinput_hook, "no_dinput_hook", FALSE);
GET_INT(g_config.refresh_rate, "refresh_rate", 0);
GET_INT(g_config.anti_aliased_fonts_min_size, "anti_aliased_fonts_min_size", 13);
GET_STRING("inject_resolution", "", g_config.inject_resolution, sizeof(g_config.inject_resolution));
GET_INT(g_config.min_font_size, "min_font_size", 0);
GET_BOOL(g_config.direct3d_passthrough, "direct3d_passthrough", FALSE);
GET_BOOL(g_config.center_cursor_fix, "center_cursor_fix", FALSE);
GET_STRING("fake_mode", "", g_config.fake_mode, sizeof(g_config.fake_mode));
Expand Down

0 comments on commit 12c23d4

Please sign in to comment.