J :
CAREFUL : this update REVERSES the triggers default actions. * Make the right trigger opens the hand and the left trigger skips to next phase. * Add an option to reverse triggers (and thus revert to old style).
This commit is contained in:
@@ -232,7 +232,14 @@ bool GuiCombat::CheckUserInput(u32 key)
|
||||
addOne(active, step);
|
||||
break;
|
||||
case PSP_CTRL_SQUARE:
|
||||
active = activeAtk = NULL; cursor_pos = OK;
|
||||
break;
|
||||
case PSP_CTRL_RTRIGGER:
|
||||
if (!options[Options::REVERSETRIGGERS].number) return false;
|
||||
active = activeAtk = NULL; cursor_pos = OK;
|
||||
break;
|
||||
case PSP_CTRL_LTRIGGER:
|
||||
if (options[Options::REVERSETRIGGERS].number) return false;
|
||||
active = activeAtk = NULL; cursor_pos = OK;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user