mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-24 22:41:27 +00:00
Merge branch 'music-manager-compile' into 'master'
Fix music manager clang error See merge request KartKrew/Kart!1401
This commit is contained in:
commit
6629be152f
1 changed files with 3 additions and 3 deletions
|
|
@ -46,11 +46,11 @@ public:
|
|||
|
||||
Tune& insert(const char* id)
|
||||
{
|
||||
auto [it, inserted] = map_.emplace(id, Tune{});
|
||||
auto res = map_.emplace(id, Tune{});
|
||||
|
||||
SRB2_ASSERT(inserted);
|
||||
SRB2_ASSERT(res.second);
|
||||
|
||||
return it->second;
|
||||
return res.first->second;
|
||||
}
|
||||
|
||||
void tick();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue