* Fix Stuffextract:M2 Reader Header change in previous commit

This commit is contained in:
shlainn 2011-09-16 22:43:00 +02:00
parent f8adc3311a
commit eae3e6cc9a

View File

@ -1146,7 +1146,7 @@ void FetchTexturesFromModel(ByteBuffer bb)
bb.read((uint8*)&header, sizeof(header));
if (header.version[0] != 8 || header.version[1] != 1 || header.version[2] != 0 || header.version[3] != 0) {
if (header.version != 0x108) {
printf("Not M2 model file!");
return;
}