STARK: Fix some compiler warnings

This commit is contained in:
Bastien Bouclet 2015-01-11 09:19:29 +01:00
parent 09e5934cc9
commit f1ab0b6d8f
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ void Actor::readFromStream(ArchiveReadStream *stream) {
for (uint i = 0; i < numMaterials; ++i) {
MaterialNode *node = new MaterialNode();
node->_name = stream->readString();
uint32 u3 = stream->readUint32LE();
node->_unknown1 = stream->readUint32LE();
node->_texName = stream->readString();
node->_r = stream->readFloat();
node->_g = stream->readFloat();

View File

@ -40,7 +40,7 @@ enum StarkGameID {
*/
enum StarkGameFeatures {
GF_DVD = (1 << 31)
GF_DVD = (1 << 1)
};
class Console;