summaryrefslogtreecommitdiff
path: root/servers/audio_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'servers/audio_server.h')
-rw-r--r--servers/audio_server.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/servers/audio_server.h b/servers/audio_server.h
index a1a3dde719..f10c2ecdc0 100644
--- a/servers/audio_server.h
+++ b/servers/audio_server.h
@@ -258,10 +258,14 @@ protected:
public:
_FORCE_INLINE_ int get_channel_count() const {
switch (get_speaker_mode()) {
- case SPEAKER_MODE_STEREO: return 1;
- case SPEAKER_SURROUND_31: return 2;
- case SPEAKER_SURROUND_51: return 3;
- case SPEAKER_SURROUND_71: return 4;
+ case SPEAKER_MODE_STEREO:
+ return 1;
+ case SPEAKER_SURROUND_31:
+ return 2;
+ case SPEAKER_SURROUND_51:
+ return 3;
+ case SPEAKER_SURROUND_71:
+ return 4;
}
ERR_FAIL_V(1);
}