diff options
author | erorcun <erayorcunus@gmail.com> | 2020-12-09 01:15:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-09 01:15:20 +0100 |
commit | 6b654094a5299d55a3621a3a23b6dafbb48b78e9 (patch) | |
tree | e9735ff0ce34dbfca24bf6c4fc609cbacaac81f1 /src/audio/soundlist.h | |
parent | fix CObject::DeleteAllTempObjectsInArea (diff) | |
parent | don't cast script param to uint8 (diff) | |
download | re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.gz re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.bz2 re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.lz re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.xz re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.tar.zst re3-6b654094a5299d55a3621a3a23b6dafbb48b78e9.zip |
Diffstat (limited to 'src/audio/soundlist.h')
-rw-r--r-- | src/audio/soundlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio/soundlist.h b/src/audio/soundlist.h index 225ed56e..7c3b30a7 100644 --- a/src/audio/soundlist.h +++ b/src/audio/soundlist.h @@ -1,6 +1,6 @@ #pragma once -enum eSound : uint16 +enum eSound { SOUND_CAR_DOOR_CLOSE_BONNET = 0, SOUND_CAR_DOOR_CLOSE_BUMPER, @@ -173,7 +173,7 @@ enum eSound : uint16 }; -enum eScriptSounds : uint16 { +enum eScriptSounds { SCRIPT_SOUND_0 = 0, SCRIPT_SOUND_1, SCRIPT_SOUND_2, |