mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-10 02:35:17 -04:00
Merge branch 'main' into unhackify-widescreen
# Conflicts: # src/dusk/imgui/ImGuiMenuGame.cpp # src/m_Do/m_Do_lib.cpp
This commit is contained in:
@@ -1568,10 +1568,22 @@ BOOL dShopSystem_c::checkShopOpen() {
|
||||
}
|
||||
|
||||
bool dShopSystem_c::checkLeftTrigger(STControl* i_stick) {
|
||||
#if TARGET_PC
|
||||
if (dusk::getSettings().game.enableMirrorMode) {
|
||||
return i_stick->checkRightTrigger();
|
||||
}
|
||||
#endif
|
||||
|
||||
return i_stick->checkLeftTrigger();
|
||||
}
|
||||
|
||||
bool dShopSystem_c::checkRightTrigger(STControl* i_stick) {
|
||||
#if TARGET_PC
|
||||
if (dusk::getSettings().game.enableMirrorMode) {
|
||||
return i_stick->checkLeftTrigger();
|
||||
}
|
||||
#endif
|
||||
|
||||
return i_stick->checkRightTrigger();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user