From 0f91bdefeade660986487aa6da8fdbda5a15727e Mon Sep 17 00:00:00 2001 From: Jonas Kulla Date: Tue, 17 Feb 2015 01:48:05 +0100 Subject: [PATCH] Fix indentation --- src/soundemitter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soundemitter.cpp b/src/soundemitter.cpp index 37fe0d3..521c4eb 100644 --- a/src/soundemitter.cpp +++ b/src/soundemitter.cpp @@ -120,7 +120,7 @@ SoundEmitter::~SoundEmitter() void SoundEmitter::play(const std::string &filename, int volume, - int pitch) + int pitch) { float _volume = clamp(volume, 0, 100) / 100.f; float _pitch = clamp(pitch, 50, 150) / 100.f;