From bfee72f75716917bf1444e501909353a84750b22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torbj=C3=B6rn=20Andersson?= Date: Sat, 30 Aug 2003 20:07:09 +0000 Subject: [PATCH] If -1 is going to be a valid value for a PlayingSoundHandle, the data type had better be signed... svn-id: r9925 --- sound/mixer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/mixer.h b/sound/mixer.h index 3ecc6997ed4..708eeeb16d1 100644 --- a/sound/mixer.h +++ b/sound/mixer.h @@ -37,7 +37,7 @@ #include "common/system.h" -typedef uint32 PlayingSoundHandle; +typedef int32 PlayingSoundHandle; class Channel; class File;