You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Style: clang-format: Disable AllowShortCaseLabelsOnASingleLine
Part of #33027.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user