diff options
author | frosch <frosch@openttd.org> | 2013-06-15 15:26:49 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2013-06-15 15:26:49 +0000 |
commit | 59b71b56668a2d5b21ae9f007e2f2c710c4a4a02 (patch) | |
tree | 51d710c2772d59a8510c0da652ad34be39a26ad1 | |
parent | 420f95a6e9ab5410e44c1b46d0d3ba2e0040b532 (diff) | |
download | openttd-59b71b56668a2d5b21ae9f007e2f2c710c4a4a02.tar.xz |
(svn r25406) -Cleanup: There were two hotkeys to toggle between 'unload' and 'unload if possible'.
-rw-r--r-- | src/order_gui.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/order_gui.cpp b/src/order_gui.cpp index 9f811cb10..7ad0d6a9c 100644 --- a/src/order_gui.cpp +++ b/src/order_gui.cpp @@ -1516,7 +1516,6 @@ Hotkey<OrdersWindow> OrdersWindow::order_hotkeys[] = { Hotkey<OrdersWindow>('K', "unload", 0, &OrdersWindow::OrderClick_Unload), Hotkey<OrdersWindow>((uint16)0, "nearest_depot", 0, &OrdersWindow::OrderClick_NearestDepot), Hotkey<OrdersWindow>((uint16)0, "always_service", 0, &OrdersWindow::OrderClick_Service), - Hotkey<OrdersWindow>((uint16)0, "force_unload", 0, &OrdersWindow::OrderClick_Unload), Hotkey<OrdersWindow>((uint16)0, "transfer", 0, &OrdersWindow::OrderHotkey_Transfer), Hotkey<OrdersWindow>((uint16)0, "no_unload", 0, &OrdersWindow::OrderHotkey_NoUnload), Hotkey<OrdersWindow>((uint16)0, "no_load", 0, &OrdersWindow::OrderHotkey_NoLoad), |