1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Cosmetic: fix format

This commit is contained in:
Mathieu Schroeter 2018-06-27 17:32:41 +02:00
parent 988962d74a
commit 94996ef4d7
3 changed files with 18 additions and 8 deletions

View File

@ -2184,7 +2184,9 @@ CDecor::GoalStop (Sint32 rank, bool bError, bool bSound)
}; };
static Sounds table_sound_boing[] = { static Sounds table_sound_boing[] = {
SOUND_BOING1, SOUND_BOING2, SOUND_BOING3, SOUND_BOING1,
SOUND_BOING2,
SOUND_BOING3,
}; };
if (bError && bSound) if (bError && bSound)
@ -3463,12 +3465,16 @@ CDecor::BlupiHiliUp (Point pos)
static Sounds table_sound_okf[] = // si fatigué 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é 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 ? if (m_bHiliRect) // rectangle de sélection existe ?
@ -4102,11 +4108,15 @@ CDecor::BlupiGoal (Point cel, Buttons button)
}; };
static Sounds table_sound_gom[] = { static Sounds table_sound_gom[] = {
SOUND_GO4, SOUND_GO5, SOUND_GO6, SOUND_GO4,
SOUND_GO5,
SOUND_GO6,
}; };
static Sounds table_sound_boing[] = { static Sounds table_sound_boing[] = {
SOUND_BOING1, SOUND_BOING2, SOUND_BOING3, SOUND_BOING1,
SOUND_BOING2,
SOUND_BOING3,
}; };
if (button == -1) if (button == -1)

View File

@ -6,8 +6,8 @@
class Display class Display
{ {
private: private:
Sint32 width; Sint32 width;
Sint32 height; Sint32 height;
private: private:
Display (); Display ();

View File

@ -922,7 +922,7 @@ CPixmap::LoadCursors ()
gmask = 0x00ff0000; gmask = 0x00ff0000;
bmask = 0x0000ff00; bmask = 0x0000ff00;
amask = 0x000000ff; amask = 0x000000ff;
#else /* SDL_BYTEORDER == SDL_BIG_ENDIAN */ #else /* SDL_BYTEORDER == SDL_BIG_ENDIAN */
rmask = 0x000000ff; rmask = 0x000000ff;
gmask = 0x0000ff00; gmask = 0x0000ff00;
bmask = 0x00ff0000; bmask = 0x00ff0000;