As Kirben suggested, increasing room name buffer

svn-id: r19237
This commit is contained in:
Gregory Montoir 2005-10-22 10:48:14 +00:00
parent e611a3ccb0
commit eeee881514

View File

@ -484,13 +484,11 @@ void ScummEngine::readIndexBlock(uint32 blocktype, uint32 itemsize) {
// Names of rooms. Maybe we should put them into a table, for use by the debugger?
if (_heversion >= 80) {
for (int room; (room = _fileHandle->readUint16LE()); ) {
char buf[30];
char buf[100];
i = 0;
for (byte s; (s = _fileHandle->readByte()); ) {
assert(i < ARRAYSIZE(buf));
for (byte s; (s = _fileHandle->readByte()) && i < ARRAYSIZE(buf) - 1; ) {
buf[i++] = s;
}
assert(i < ARRAYSIZE(buf));
buf[i] = 0;
debug(5, "Room %d: '%s'", room, buf);
}