summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwithmorten <morten.with@gmail.com>2020-12-07 00:57:34 +0100
committerwithmorten <morten.with@gmail.com>2020-12-07 00:57:34 +0100
commitb5ffea5c6e824049194c495495af9ec66c0b208d (patch)
tree616ac8710f17d9172ca731293fca913aeb1ba716
parentint8 enums fixed (diff)
downloadre3-b5ffea5c6e824049194c495495af9ec66c0b208d.tar
re3-b5ffea5c6e824049194c495495af9ec66c0b208d.tar.gz
re3-b5ffea5c6e824049194c495495af9ec66c0b208d.tar.bz2
re3-b5ffea5c6e824049194c495495af9ec66c0b208d.tar.lz
re3-b5ffea5c6e824049194c495495af9ec66c0b208d.tar.xz
re3-b5ffea5c6e824049194c495495af9ec66c0b208d.tar.zst
re3-b5ffea5c6e824049194c495495af9ec66c0b208d.zip
-rw-r--r--src/audio/soundlist.h4
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,