summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2016-04-19 20:39:08 +0000
committerfrosch <frosch@openttd.org>2016-04-19 20:39:08 +0000
commite8b6b02bc26016fc86fe9048b2fcab44aa21c025 (patch)
tree9ad4ee083ab390952c510f8e12fb749c83bfc4c9
parentb8189977b48ec42b109864fd00916fc6331fa4d9 (diff)
downloadopenttd-e8b6b02bc26016fc86fe9048b2fcab44aa21c025.tar.xz
(svn r27547) -Fix: Use a more appropiate sound effect for convert-rail. (andythenorth)
-rw-r--r--src/rail_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rail_gui.cpp b/src/rail_gui.cpp
index a48abd29c..3a903fbe7 100644
--- a/src/rail_gui.cpp
+++ b/src/rail_gui.cpp
@@ -710,7 +710,7 @@ struct BuildRailToolbarWindow : Window {
break;
case DDSP_CONVERT_RAIL:
- DoCommandP(end_tile, start_tile, _cur_railtype | (_ctrl_pressed ? 0x10 : 0), CMD_CONVERT_RAIL | CMD_MSG(STR_ERROR_CAN_T_CONVERT_RAIL), CcPlaySound10);
+ DoCommandP(end_tile, start_tile, _cur_railtype | (_ctrl_pressed ? 0x10 : 0), CMD_CONVERT_RAIL | CMD_MSG(STR_ERROR_CAN_T_CONVERT_RAIL), CcPlaySound1E);
break;
case DDSP_REMOVE_STATION: