mirror of
https://github.com/Zelda64Recomp/Zelda64Recomp
synced 2026-07-02 12:36:47 -04:00
Patched lens/telescope effect to not stretch in widescreen, fixed incorrect trigger icons in UI.
This commit is contained in:
+2
-2
@@ -620,9 +620,9 @@ std::string controller_axis_to_string(int axis) {
|
||||
case SDL_GameControllerAxis::SDL_CONTROLLER_AXIS_RIGHTY:
|
||||
return positive ? "\u21C3" : "\u21BF";
|
||||
case SDL_GameControllerAxis::SDL_CONTROLLER_AXIS_TRIGGERLEFT:
|
||||
return positive ? "\u219A" : "\u21DC";
|
||||
return positive ? "\u2196" : "\u21DC";
|
||||
case SDL_GameControllerAxis::SDL_CONTROLLER_AXIS_TRIGGERRIGHT:
|
||||
return positive ? "\u219B" : "\u21DD";
|
||||
return positive ? "\u2197" : "\u21DD";
|
||||
default:
|
||||
return "Axis " + std::to_string(actual_axis) + (positive ? '+' : '-');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user