diff options
Diffstat (limited to 'source/game/StarEffectSourceDatabase.cpp')
-rw-r--r-- | source/game/StarEffectSourceDatabase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarEffectSourceDatabase.cpp b/source/game/StarEffectSourceDatabase.cpp index fe65a2a..ab3c112 100644 --- a/source/game/StarEffectSourceDatabase.cpp +++ b/source/game/StarEffectSourceDatabase.cpp @@ -183,7 +183,7 @@ List<AudioInstancePtr> soundsFromDefinition(Json const& config, Vec2F const& pos sample->setRangeMultiplier(entry.getFloat("audioRangeMultiplier", 1.0f)); sample->setPosition(position); - result.append(move(sample)); + result.append(std::move(sample)); } return result; } |