diff --git a/src/ObjLoading/Game/T6/AssetLoaders/AssetLoaderSoundBank.cpp b/src/ObjLoading/Game/T6/AssetLoaders/AssetLoaderSoundBank.cpp index 4b866564..43a83b46 100644 --- a/src/ObjLoading/Game/T6/AssetLoaders/AssetLoaderSoundBank.cpp +++ b/src/ObjLoading/Game/T6/AssetLoaders/AssetLoaderSoundBank.cpp @@ -107,7 +107,7 @@ namespace return false; } - value = static_cast(T6::Common::DbsplToLinear(dbsplValue) * static_cast(std::numeric_limits::max())); + value = static_cast(Common::DbsplToLinear(dbsplValue) * static_cast(std::numeric_limits::max())); return true; } @@ -132,7 +132,7 @@ namespace return false; } - value = static_cast(T6::Common::CentsToHertz(centsValue) * static_cast(std::numeric_limits::max())); + value = static_cast(Common::CentsToHertz(centsValue) * static_cast(std::numeric_limits::max())); return true; }