Skip to content

Commit

Permalink
BLUGA-GRAPHICS: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Saverio976 committed Nov 1, 2023
1 parent 6b57e19 commit a98e1d3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ namespace Raylib {

std::unique_ptr<Sound> Sound::fromFile(const std::string& fileName, float volume)
{
return std::make_unique(SoundImpl(fileName, volume));
return std::make_unique<SoundImpl>(fileName, volume);
}

std::unique_ptr<Music> Music::fromFile(const std::string& fileName, float volume)
{
return std::make_unique(MusicImpl(fileName, volume));
return std::make_unique<MusicImpl>(fileName, volume);
}
}

0 comments on commit a98e1d3

Please sign in to comment.