2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 00:27:42 +00:00

Symbol correct function/variable names

This commit is contained in:
2016-04-27 21:52:41 -07:00
parent c55db47941
commit 0df9ffd56d
9 changed files with 28 additions and 15 deletions

View File

@@ -2,6 +2,7 @@
namespace urde
{
std::vector<s16>* CSfxManager::mpSfxTranslationTable = nullptr;
void CSfxManager::AddListener(ESfxChannels,
const zeus::CVector3f& vec1, const zeus::CVector3f& vec2,
@@ -16,8 +17,19 @@ void CSfxManager::UpdateListener(const zeus::CVector3f& pos, const zeus::CVector
{
}
u16 CSfxManager::TranslateSFXID(u16)
u16 CSfxManager::TranslateSFXID(u16 id)
{
if (mpSfxTranslationTable)
return 0;
u16 index = id & 0xFFFF;
if (index >= mpSfxTranslationTable->size())
return 0;
s16 ret = mpSfxTranslationTable->at(index);
if (ret == -1)
return 0;
return ret & 0xFFFF;
}
}