From 18135950bfc2955cddfee44d8f799ea4a2e9dea2 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Wed, 27 Jun 2018 17:32:41 +0200 Subject: [PATCH] Cosmetic: fix format --- src/decblupi.cxx | 20 +++++++++++++++----- src/pixmap.cxx | 2 +- 2 files changed, 16 insertions(+), 6 deletions(-) diff --git a/src/decblupi.cxx b/src/decblupi.cxx index e236eba..0e6a52c 100644 --- a/src/decblupi.cxx +++ b/src/decblupi.cxx @@ -2184,7 +2184,9 @@ CDecor::GoalStop (Sint32 rank, bool bError, bool bSound) }; static Sounds table_sound_boing[] = { - SOUND_BOING1, SOUND_BOING2, SOUND_BOING3, + SOUND_BOING1, + SOUND_BOING2, + SOUND_BOING3, }; if (bError && bSound) @@ -3463,12 +3465,16 @@ CDecor::BlupiHiliUp (Point pos) static Sounds table_sound_okf[] = // si fatigué { - SOUND_OK1f, SOUND_OK2f, SOUND_OK3f, + SOUND_OK1f, + SOUND_OK2f, + SOUND_OK3f, }; static Sounds table_sound_oke[] = // si énervé { - SOUND_OK1e, SOUND_OK2e, SOUND_OK3e, + SOUND_OK1e, + SOUND_OK2e, + SOUND_OK3e, }; if (m_bHiliRect) // rectangle de sélection existe ? @@ -4102,11 +4108,15 @@ CDecor::BlupiGoal (Point cel, Buttons button) }; static Sounds table_sound_gom[] = { - SOUND_GO4, SOUND_GO5, SOUND_GO6, + SOUND_GO4, + SOUND_GO5, + SOUND_GO6, }; static Sounds table_sound_boing[] = { - SOUND_BOING1, SOUND_BOING2, SOUND_BOING3, + SOUND_BOING1, + SOUND_BOING2, + SOUND_BOING3, }; if (button == -1) diff --git a/src/pixmap.cxx b/src/pixmap.cxx index c1c5e46..f3a84e6 100644 --- a/src/pixmap.cxx +++ b/src/pixmap.cxx @@ -782,7 +782,7 @@ CPixmap::LoadCursors (Uint8 scale) gmask = 0x00ff0000; bmask = 0x0000ff00; amask = 0x000000ff; -#else /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ +#else /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ rmask = 0x000000ff; gmask = 0x0000ff00; bmask = 0x00ff0000;