From f663f5bbb75b850ae22f451a22d112b6c62b2ad6 Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Sun, 16 Jan 2011 17:46:04 +0100 Subject: Check for negative positional values in the playSfx() function. From http://www.gitorious.org/manaplus/manaplus/commit/6c885855b0c06bd7c4b6ab3574d8e2f3398ad97a Thanks to 4144. Trivial. --- src/sound.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src') diff --git a/src/sound.cpp b/src/sound.cpp index a8090f84..c64e10d8 100644 --- a/src/sound.cpp +++ b/src/sound.cpp @@ -253,6 +253,10 @@ void Sound::playSfx(const std::string &path, int x, int y) if (dy < 0) dy = -dy; int dist = dx > dy ? dx : dy; + + // Check for negative values + if (dist * 8 > vol) + return; vol -= dist * 8; } sample->play(0, vol); -- cgit v1.2.3-70-g09d2