- fixed missing close paren in BX_PANIC call

This commit is contained in:
Bryce Denney 2001-05-20 03:18:10 +00:00
parent c32028ab09
commit dc95af092a

View File

@ -59,7 +59,7 @@ bx_sound_windows_c::bx_sound_windows_c(bx_sb16_c *sb16)
DataPointer = (Bit8u*) GlobalLock(DataHandle);
if (DataPointer == NULL)
BX_PANIC(("GlobalLock returned NULL-pointer");
BX_PANIC(("GlobalLock returned NULL-pointer"));
#define NEWBUFFER(size) &(DataPointer[offset]); offset += ALIGN(size)
@ -74,7 +74,7 @@ bx_sound_windows_c::bx_sound_windows_c(bx_sb16_c *sb16)
}
if (offset > size)
BX_PANIC(("Allocated memory was too small!");
BX_PANIC(("Allocated memory was too small!"));
#undef size
#undef ALIGN