mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-07-03 18:41:20 +01:00
(svn r3159) Remove the read-only variable _no_button_sound
This commit is contained in:
parent
7d888a5715
commit
a20b9c2240
1
gui.h
1
gui.h
@ -146,7 +146,6 @@ void ShowMusicWindow(void);
|
||||
VARDEF byte _construct_mode;
|
||||
VARDEF byte _station_show_coverage;
|
||||
VARDEF PlaceProc *_place_proc;
|
||||
VARDEF bool _no_button_sound;
|
||||
|
||||
/* vehicle_gui.c */
|
||||
void InitializeGUI(void);
|
||||
|
@ -127,7 +127,7 @@ bool HandlePlacePushButton(Window *w, int widget, CursorID cursor, int mode, Pla
|
||||
if (w->disabled_state & mask)
|
||||
return false;
|
||||
|
||||
if (!_no_button_sound) SndPlayFx(SND_15_BEEP);
|
||||
SndPlayFx(SND_15_BEEP);
|
||||
SetWindowDirty(w);
|
||||
|
||||
if (w->click_state & mask) {
|
||||
|
Loading…
Reference in New Issue
Block a user