mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-10 12:55:24 +00:00
SCI: Fix Missing Default Switch Case Warning in Resource Patcher
This is flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
parent
b2f160ba2a
commit
88aaabc913
@ -528,6 +528,8 @@ void ResourcePatcher::patchResource(Resource &resource, const GameResourcePatch
|
||||
}
|
||||
WRITE_SCI11ENDIAN_UINT32(target, value);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
patchData += sizeof(int32);
|
||||
|
Loading…
x
Reference in New Issue
Block a user