SCI: Slight formatting fix.

svn-id: r54330
This commit is contained in:
Johannes Schickel 2010-11-18 17:25:09 +00:00
parent 24f4d97901
commit b593b15c50

View File

@ -178,7 +178,7 @@ void Script::load(ResourceManager *resMan) {
_localsCount = READ_SCI11ENDIAN_UINT16(_buf + _localsOffset - 2);
} else if (getSciVersion() == SCI_VERSION_3) {
_localsCount = READ_LE_UINT16(_buf + 12);
_exportTable = (const uint16 *) (_buf + 22);
_exportTable = (const uint16 *)(_buf + 22);
_numExports = READ_LE_UINT16(_buf + 20);
// SCI3 local variables always start dword-aligned
if (_numExports % 2)