Remove more namespace on function calls

This commit is contained in:
Jbleezy 2024-10-08 11:38:24 -07:00
parent e9720a2b1a
commit 6beff28518

View File

@ -107,7 +107,7 @@ namespace
return false; return false;
} }
value = static_cast<uint16_t>(T6::Common::DbsplToLinear(dbsplValue) * static_cast<float>(std::numeric_limits<uint16_t>::max())); value = static_cast<uint16_t>(Common::DbsplToLinear(dbsplValue) * static_cast<float>(std::numeric_limits<uint16_t>::max()));
return true; return true;
} }
@ -132,7 +132,7 @@ namespace
return false; return false;
} }
value = static_cast<uint16_t>(T6::Common::CentsToHertz(centsValue) * static_cast<float>(std::numeric_limits<int16_t>::max())); value = static_cast<uint16_t>(Common::CentsToHertz(centsValue) * static_cast<float>(std::numeric_limits<int16_t>::max()));
return true; return true;
} }