aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/ai-funcs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hdb/ai-funcs.cpp')
-rw-r--r--engines/hdb/ai-funcs.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/hdb/ai-funcs.cpp b/engines/hdb/ai-funcs.cpp
index afd6f3a761..137df1c4e9 100644
--- a/engines/hdb/ai-funcs.cpp
+++ b/engines/hdb/ai-funcs.cpp
@@ -2191,7 +2191,8 @@ bool AI::walkThroughEnt(AIType type) {
// Play special sound for every item you get
void AI::getItemSound(AIType type) {
switch (type) {
- case ITEM_GOO_CUP: g_hdb->_sound->playSound(SND_GET_GOO);
+ case ITEM_GOO_CUP:
+ g_hdb->_sound->playSound(SND_GET_GOO);
break;
case ITEM_GEM_WHITE:
case ITEM_GEM_BLUE:
@@ -2239,7 +2240,8 @@ void AI::getItemSound(AIType type) {
break;
}
// fall through
- default: g_hdb->_sound->playSound(SND_GET_THING);
+ default:
+ g_hdb->_sound->playSound(SND_GET_THING);
}
}