From 6beff28518a95398d1558fc22ee78442156f565d Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Tue, 8 Oct 2024 11:38:24 -0700 Subject: [PATCH] Remove more namespace on function calls --- src/ObjLoading/Game/T6/AssetLoaders/AssetLoaderSoundBank.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }