diff --git a/src/configs/gamepad-utils.ts b/src/configs/gamepad-utils.ts index b6968d369ae..43c6d092054 100644 --- a/src/configs/gamepad-utils.ts +++ b/src/configs/gamepad-utils.ts @@ -80,7 +80,6 @@ export function swapCurrentKeys(config: InterfaceConfig, settingName, pressedBut export function reloadCurrentKeys(config): void { // need to rework this to include keys that were not there at the begining const currentKeys = {}; - debugger; for (const key of Object.keys(config.setting)) { const settingName = config.setting[key]; const action = config.custom[key]; diff --git a/src/ui/settings/abstract-settings-ui-handler.ts b/src/ui/settings/abstract-settings-ui-handler.ts index e92d3dc68a2..81ddacb1854 100644 --- a/src/ui/settings/abstract-settings-ui-handler.ts +++ b/src/ui/settings/abstract-settings-ui-handler.ts @@ -241,7 +241,6 @@ export default abstract class AbstractSettingsUiUiHandler extends UiHandler { if (!activeConfig.custom) return; // For each element in the binding settings, update the icon according to the current assignment. - debugger; for (const elm of this.bindingSettings) { // const key = getKeyForSettingName(activeConfig, elm); // Get the key for the setting name. const {key, icon} = getKeyAndActionFromCurrentKeysWithSettingName(activeConfig, elm);