Remove console print when swapping a and b

This commit is contained in:
Jatin Kohli 2024-05-14 14:08:28 -04:00 committed by GitHub
parent 3a0c4fe06f
commit 19e8df4526
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -160,7 +160,6 @@ export function setSetting(scene: BattleScene, setting: Setting, value: integer)
scene.inputController.setGamepadSupport(settingOptions[setting][value] !== 'Disabled');
break;
case Setting.Swap_A_and_B:
console.log("Swapping A and B")
scene.abSwapped = settingOptions[setting][value] !== 'Disabled';
scene.updateKeyboard();
break;