mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Update config values
This commit is contained in:
parent
a780d6e997
commit
522d2fbb71
1 changed files with 6 additions and 6 deletions
|
|
@ -68,7 +68,7 @@ ConfigWindow configWindow = {
|
||||||
.settings_changed = false,
|
.settings_changed = false,
|
||||||
.msaa = 0,
|
.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 configMasterVolume = 80; // 0 - MAX_VOLUME
|
||||||
unsigned int configMusicVolume = MAX_VOLUME;
|
unsigned int configMusicVolume = MAX_VOLUME;
|
||||||
unsigned int configSfxVolume = 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 configStickDeadzone = 16; // 16*DEADZONE_STEP=4960 (the original default deadzone)
|
||||||
unsigned int configRumbleStrength = 50;
|
unsigned int configRumbleStrength = 50;
|
||||||
// better camera settings
|
// better camera settings
|
||||||
unsigned int configCameraXSens = 10;
|
unsigned int configCameraXSens = 50;
|
||||||
unsigned int configCameraYSens = 10;
|
unsigned int configCameraYSens = 50;
|
||||||
unsigned int configCameraAggr = 0;
|
unsigned int configCameraAggr = 0;
|
||||||
unsigned int configCameraPan = 0;
|
unsigned int configCameraPan = 0;
|
||||||
unsigned int configCameraDegrade = 50; // 0 - 100%
|
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 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 }}};
|
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 configShowFPS = false;
|
||||||
bool configUncappedFramerate = true;
|
bool configUncappedFramerate = false;
|
||||||
unsigned int configFrameLimit = 60;
|
unsigned int configFrameLimit = 144;
|
||||||
unsigned int configDrawDistance = 5;
|
unsigned int configDrawDistance = 4;
|
||||||
bool configDisablePopups = false;
|
bool configDisablePopups = false;
|
||||||
bool configLuaProfiler = false;
|
bool configLuaProfiler = false;
|
||||||
#ifdef DEVELOPMENT
|
#ifdef DEVELOPMENT
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue