diff options
| -rw-r--r-- | src/project.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/project.cpp b/src/project.cpp index fdde6e0..fb11647 100644 --- a/src/project.cpp +++ b/src/project.cpp @@ -114,7 +114,7 @@ void Proj_SerializeAsset(std::ofstream &stream, const Asset &asset) { stream << PKE_PROJ_FILE_ASSET_BASE_PATH << asset.basePath << std::endl; } if (asset.type != a.type) { - stream << PKE_PROJ_FILE_ASSET_TYPE << static_cast<AssetType_T>(asset.type) << std::endl; + stream << PKE_PROJ_FILE_ASSET_TYPE << static_cast<uint64_t>(asset.type) << std::endl; } } |
