From 94c91270235d675cb7d2cbfa6e226c35f2fe17a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Duval?= Date: Wed, 15 Sep 2004 18:52:51 +0000 Subject: [PATCH] Fixed missing semi colon. --- src/sound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sound.cpp b/src/sound.cpp index 28f9beca09b..1949ead302e 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -50,7 +50,7 @@ manager::manager(bool sound_on) //sounds don't sound good on Windows unless the buffer size is 4k, //but this seems to cause crashes on other systems... #ifdef WIN32 - const size_t buf_size = 4096 + const size_t buf_size = 4096; #else const size_t buf_size = 1024; #endif