Skip to content

Commit

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

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

MusicImpl::~MusicImpl()
{
if (isReady()) {
unload();
}
}
} // namespace Raylib
4 changes: 0 additions & 4 deletions libs/B-luga-graphics/src/RaylibImpl/Audio/Audio.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ namespace Raylib {
public:
SoundImpl(const std::string& fileName, float volume);

~SoundImpl();

bool isReady() const override;

void unload() override;
Expand Down Expand Up @@ -58,8 +56,6 @@ namespace Raylib {
public:
MusicImpl(const std::string& fileName, float volume);

~MusicImpl();

void unload() override;

bool isReady() const override;
Expand Down

0 comments on commit 28dd2cd

Please sign in to comment.