diff options
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 11 | ||||
-rw-r--r-- | src/input/pages/other.cpp | 6 |
3 files changed, 17 insertions, 1 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index d278e9799..296ef17fa 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -380,6 +380,7 @@ namespace InputAction IMITATION, SEND_MAIL, TRADE, + PRICE_LOAD, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 58688fc27..ab1cd04e2 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3189,7 +3189,16 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "trade", - true} + true}, + {"keyPriceLoad", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::priceLoad, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "priceload", + false} }; #endif // INPUT_INPUTACTIONMAP_H diff --git a/src/input/pages/other.cpp b/src/input/pages/other.cpp index c7db9c05d..57b0b68b0 100644 --- a/src/input/pages/other.cpp +++ b/src/input/pages/other.cpp @@ -238,6 +238,12 @@ SetupActionData setupActionDataOther[] = "", }, { + // TRANSLATORS: input action name + N_("Load shop items list from disk"), + InputAction::PRICE_LOAD, + "", + }, + { "", InputAction::NO_VALUE, "" |