mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-22 01:39:57 +00:00
Minor fix to deallocate STRING_FRAG segments properly
svn-id: r39299
This commit is contained in:
parent
d8824d631a
commit
49393c79e5
@ -298,6 +298,8 @@ int SegManager::deallocate(int seg, bool recursive) {
|
||||
case MEM_OBJ_RESERVED:
|
||||
free(mobj->data.reserved);
|
||||
break;
|
||||
case MEM_OBJ_STRING_FRAG:
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Deallocating segment type %d not supported!\n",
|
||||
mobj->type);
|
||||
|
Loading…
Reference in New Issue
Block a user