Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions MarathonRecomp/patches/video_patches.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,8 @@ bool DisableRadialBlur()
{
return Config::RadialBlur == ERadialBlur::Off;
}

bool DisableKingdomValleyMist()
{
return Config::DisableKingdomValleyMist;
}
1 change: 1 addition & 0 deletions MarathonRecomp/user/config_def.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ CONFIG_DEFINE_ENUM_LOCALISED("Video", EUIAlignmentMode, UIAlignmentMode, EUIAlig

CONFIG_DEFINE_HIDDEN("Codes", bool, DisableDWMRoundedCorners, false);
CONFIG_DEFINE_HIDDEN("Codes", bool, DisableTitleInputDelay, false);
CONFIG_DEFINE_HIDDEN("Codes", bool, DisableKingdomValleyMist, false);
CONFIG_DEFINE_HIDDEN("Codes", bool, HUDToggleKey, false);
CONFIG_DEFINE_HIDDEN("Codes", bool, SkipIntroLogos, false);
CONFIG_DEFINE_HIDDEN("Codes", bool, FixPowerUpJingleDuration, false);
Expand Down
5 changes: 5 additions & 0 deletions MarathonRecompLib/config/Marathon.toml
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,11 @@ name = "DisableRadialBlur"
address = 0x82653834
jump_address_on_true = 0x82653840

[[midasm_hook]]
name = "DisableKingdomValleyMist"
address = 0x82311E50
jump_address_on_true = 0x82311E54

[[midasm_hook]]
name = "PostureControlRotationSpeedFix"
address = 0x82201C6C
Expand Down
Loading