CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Cedric Duval <[EMAIL PROTECTED]> 04/09/15 18:52:51
Modified files:
src : sound.cpp
Log message:
Fixed missing semi colon.
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/sound.cpp.diff?tr1=1.22&tr2=1.23&r1=text&r2=text
Patches:
Index: wesnoth/src/sound.cpp
diff -u wesnoth/src/sound.cpp:1.22 wesnoth/src/sound.cpp:1.23
--- wesnoth/src/sound.cpp:1.22 Mon Aug 30 01:23:16 2004
+++ wesnoth/src/sound.cpp Wed Sep 15 18:52:51 2004
@@ -1,4 +1,4 @@
-/* $Id: sound.cpp,v 1.22 2004/08/30 01:23:16 Sirp Exp $ */
+/* $Id: sound.cpp,v 1.23 2004/09/15 18:52:51 cedricd Exp $ */
/*
Copyright (C) 2003 by David White <[EMAIL PROTECTED]>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -50,7 +50,7 @@
//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