File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 6
6
AccessModifierOffset : -4
7
7
AlignAfterOpenBracket : DontAlign
8
8
AllowShortBlocksOnASingleLine : true
9
+ AllowShortCaseLabelsOnASingleLine : true
9
10
AllowShortFunctionsOnASingleLine : All
10
11
BasedOnStyle : LLVM
11
12
BraceWrapping :
13
+ BeforeLambdaBody : true
12
14
AfterCaseLabel : true
13
15
AfterClass : true
14
16
AfterControlStatement : true
Original file line number Diff line number Diff line change @@ -270,13 +270,12 @@ void CSoundEnt::Initialize()
270
270
// =========================================================
271
271
int CSoundEnt::ISoundsInList (int iListType)
272
272
{
273
- int iThisSound = [=]() {
273
+ int iThisSound = [=]()
274
+ {
274
275
switch (iListType)
275
276
{
276
- case SOUNDLISTTYPE_FREE:
277
- return m_iFreeSound;
278
- case SOUNDLISTTYPE_ACTIVE:
279
- return m_iActiveSound;
277
+ case SOUNDLISTTYPE_FREE: return m_iFreeSound;
278
+ case SOUNDLISTTYPE_ACTIVE: return m_iActiveSound;
280
279
default :
281
280
ALERT (at_console, " Unknown Sound List Type!\n " );
282
281
return SOUNDLIST_EMPTY;
You can’t perform that action at this time.
0 commit comments