Skip to content

Commit

Permalink
BLUGA-GRAPHICS: Fix compil typo
Browse files Browse the repository at this point in the history
PATCH
  • Loading branch information
Saverio976 committed Nov 5, 2023
1 parent 96d0f65 commit 18b66c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libs/B-luga-graphics/src/RaylibImpl/Audio/Audio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,14 +174,14 @@ namespace Raylib {
return _path;
}

~SoundImpl::SoundImpl()
SoundImpl::~SoundImpl()
{
if (isReady()) {
unload();
}
}

~MusicImpl::MusicImpl()
MusicImpl::~MusicImpl()
{
if (isReady()) {
unload();
Expand Down

0 comments on commit 18b66c7

Please sign in to comment.