diff options
author | Paweł Kołodziejski | 2004-05-02 13:15:33 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2004-05-02 13:15:33 +0000 |
commit | 8c6f3ddc0a1a58954ac1f9f7a4c0c7c8aaa49bc3 (patch) | |
tree | 6ce9dd553a6a69b3e79b5165403ec5f2f932ba05 /scumm/imuse_digi | |
parent | 7701fece201fe89e0e710924b2de59228bbc7e88 (diff) | |
download | scummvm-rg350-8c6f3ddc0a1a58954ac1f9f7a4c0c7c8aaa49bc3.tar.gz scummvm-rg350-8c6f3ddc0a1a58954ac1f9f7a4c0c7c8aaa49bc3.tar.bz2 scummvm-rg350-8c6f3ddc0a1a58954ac1f9f7a4c0c7c8aaa49bc3.zip |
changed from int to int32 to be sure
svn-id: r13742
Diffstat (limited to 'scumm/imuse_digi')
-rw-r--r-- | scumm/imuse_digi/dimuse.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/scumm/imuse_digi/dimuse.h b/scumm/imuse_digi/dimuse.h index 0a341e9eda..ec61cd2eec 100644 --- a/scumm/imuse_digi/dimuse.h +++ b/scumm/imuse_digi/dimuse.h @@ -51,25 +51,25 @@ private: int32 volFadeDelay; // bool volFadeUsed; // - int soundId; + int32 soundId; char soundName[15]; bool used; bool toBeRemoved; bool started; bool souStream; - int priority; + int32 priority; int32 regionOffset; int32 trackOffset; int32 dataOffset; - int curRegion; - int curHookId; - int volGroupId; - int soundType; - int iteration; - int mod; + int32 curRegion; + int32 curHookId; + int32 volGroupId; + int32 soundType; + int32 iteration; + int32 mod; int32 mixerFlags; - int mixerVol; - int mixerPan; + int32 mixerVol; + int32 mixerPan; ImuseDigiSndMgr::soundStruct *soundHandle; PlayingSoundHandle handle; |