From 464ad6b951c8cd1c41b828b070aec5fb77983e8e Mon Sep 17 00:00:00 2001 From: alberth Date: Fri, 12 Feb 2010 10:40:29 +0000 Subject: [PATCH] (svn r19101) -Fix (r19039): Click sound was not played when pressing zoom in/out buttons. --- src/smallmap_gui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp index 4ac191c3b4..1892d173af 100644 --- a/src/smallmap_gui.cpp +++ b/src/smallmap_gui.cpp @@ -1113,6 +1113,7 @@ public: const NWidgetBase *wid = this->GetWidget(SM_WIDGET_MAP); Point pt = {wid->current_x / 2, wid->current_y / 2}; this->SetZoomLevel((widget == SM_WIDGET_ZOOM_IN) ? ZLC_ZOOM_IN : ZLC_ZOOM_OUT, &pt); + SndPlayFx(SND_15_BEEP); break; }