From 522d2fbb71d954ab825f84dc391863017a8e829e Mon Sep 17 00:00:00 2001 From: Agent X <44549182+Agent-11@users.noreply.github.com> Date: Sun, 17 Dec 2023 19:43:27 -0500 Subject: [PATCH] Update config values --- src/pc/configfile.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pc/configfile.c b/src/pc/configfile.c index 02ee9904..e5416255 100644 --- a/src/pc/configfile.c +++ b/src/pc/configfile.c @@ -68,7 +68,7 @@ ConfigWindow configWindow = { .settings_changed = false, .msaa = 0, }; -unsigned int configFiltering = 1; // 0=force nearest, 1=linear, 2=three-point +unsigned int configFiltering = 2; // 0=force nearest, 1=linear, 2=three-point unsigned int configMasterVolume = 80; // 0 - MAX_VOLUME unsigned int configMusicVolume = MAX_VOLUME; unsigned int configSfxVolume = MAX_VOLUME; @@ -104,8 +104,8 @@ unsigned int configKeyDisconnect[MAX_BINDS] = { VK_INVALID, VK_INVALID, VK_INVAL unsigned int configStickDeadzone = 16; // 16*DEADZONE_STEP=4960 (the original default deadzone) unsigned int configRumbleStrength = 50; // better camera settings -unsigned int configCameraXSens = 10; -unsigned int configCameraYSens = 10; +unsigned int configCameraXSens = 50; +unsigned int configCameraYSens = 50; unsigned int configCameraAggr = 0; unsigned int configCameraPan = 0; unsigned int configCameraDegrade = 50; // 0 - 100% @@ -139,9 +139,9 @@ bool configMenuDemos = false; struct PlayerPalette configPlayerPalette = {{{ 0x00, 0x00, 0xff }, { 0xff, 0x00, 0x00 }, { 0xff, 0xff, 0xff }, { 0x72, 0x1c, 0x0e }, { 0x73, 0x06, 0x00 }, { 0xfe, 0xc1, 0x79 }, { 0xff, 0x00, 0x00 }}}; struct PlayerPalette configCustomPalette = {{{ 0x00, 0x00, 0xff }, { 0xff, 0x00, 0x00 }, { 0xff, 0xff, 0xff }, { 0x72, 0x1c, 0x0e }, { 0x73, 0x06, 0x00 }, { 0xfe, 0xc1, 0x79 }, { 0xff, 0x00, 0x00 }}}; bool configShowFPS = false; -bool configUncappedFramerate = true; -unsigned int configFrameLimit = 60; -unsigned int configDrawDistance = 5; +bool configUncappedFramerate = false; +unsigned int configFrameLimit = 144; +unsigned int configDrawDistance = 4; bool configDisablePopups = false; bool configLuaProfiler = false; #ifdef DEVELOPMENT