SCI: Fix compilation when SCI32 is disabled
This commit is contained in:
parent
7aa824372e
commit
d89c355fee
2 changed files with 0 additions and 6 deletions
|
@ -67,13 +67,11 @@ void WRITE_SCI11ENDIAN_UINT16(void *ptr, uint16 val) {
|
|||
WRITE_LE_UINT16(ptr, val);
|
||||
}
|
||||
|
||||
#ifdef ENABLE_SCI32
|
||||
void WRITE_SCI11ENDIAN_UINT32(void *ptr, uint32 val) {
|
||||
if (g_sci->getPlatform() == Common::kPlatformMacintosh && getSciVersion() >= SCI_VERSION_1_1)
|
||||
WRITE_BE_UINT32(ptr, val);
|
||||
else
|
||||
WRITE_LE_UINT32(ptr, val);
|
||||
}
|
||||
#endif
|
||||
|
||||
} // End of namespace Sci
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue