Fixed missing semi colon.

This commit is contained in:
Cédric Duval 2004-09-15 18:52:51 +00:00
parent fcdc371a42
commit 94c9127023

View file

@ -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