diff --git a/dZoneManager/Zone.cpp b/dZoneManager/Zone.cpp index 32b9bc7d..ebb1e3f1 100644 --- a/dZoneManager/Zone.cpp +++ b/dZoneManager/Zone.cpp @@ -397,7 +397,7 @@ SceneTransitionInfo Zone::LoadSceneTransitionInfo(std::istream& file) { uint32_t sceneID, layerID; BinaryIO::BinaryRead(file, sceneID); BinaryIO::BinaryRead(file, layerID); - info.sceneID = LWOSCENEID(static_cast(sceneID), layerID); + info.sceneID = LWOSCENEID(sceneID, layerID); BinaryIO::BinaryRead(file, info.position); return info; }