mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
As Kirben suggested, increasing room name buffer
svn-id: r19237
This commit is contained in:
parent
e611a3ccb0
commit
eeee881514
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user