Skip to content

Commit

Permalink
fix(build): Fix detected build issues.
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Nana <[email protected]>
  • Loading branch information
na2axl committed Aug 25, 2024
1 parent f3a625d commit 935aa40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Mixer/Pipeline/BinauralProcessor.h
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ namespace SparkyStudios::Audio::Amplitude
{
if (!_hrirSphere.IsLoaded())
{
_hrirSphere.SetResource("./data/mit.amir");
_hrirSphere.SetResource(AM_OS_STRING("./data/mit.amir"));
_hrirSphere.Load(Engine::GetInstance()->GetFileSystem());
}

Expand Down
2 changes: 1 addition & 1 deletion src/Sound/Sound.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ namespace SparkyStudios::Audio::Amplitude
}
const AmString& SoundImpl::GetName() const
{
return AssetImpl<unsigned long long, SoundDefinition>::GetName();
return AssetImpl::GetName();
}

bool SoundImpl::IsStream() const
Expand Down

0 comments on commit 935aa40

Please sign in to comment.