diff options
author | Torbjörn Andersson | 2003-08-30 20:07:09 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2003-08-30 20:07:09 +0000 |
commit | bfee72f75716917bf1444e501909353a84750b22 (patch) | |
tree | d4b18052dedd0aca28677825b77a1781bfef9463 /sound | |
parent | 9c05d44d00ff31ffb9b535da1536e38ab28d150a (diff) | |
download | scummvm-rg350-bfee72f75716917bf1444e501909353a84750b22.tar.gz scummvm-rg350-bfee72f75716917bf1444e501909353a84750b22.tar.bz2 scummvm-rg350-bfee72f75716917bf1444e501909353a84750b22.zip |
If -1 is going to be a valid value for a PlayingSoundHandle, the data type
had better be signed...
svn-id: r9925
Diffstat (limited to 'sound')
-rw-r--r-- | sound/mixer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/mixer.h b/sound/mixer.h index 3ecc6997ed..708eeeb16d 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; |