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

Change BOOL to bool

This commit is contained in:
Mathieu Schroeter 2017-01-21 23:44:48 +01:00
parent ec64153d42
commit 03936a50e3
2 changed files with 4 additions and 4 deletions

View File

@ -2570,7 +2570,7 @@ static DescAction action_table[] =
// Calcule l'action suivante.
// Retourne FALSE lorsque l'action est terminée.
BOOL Action(short action, short direct,
bool Action(short action, short direct,
short &phase, short &step,
short &channel, short &icon, POINT &pos, short &posZ,
short &sound)
@ -2658,7 +2658,7 @@ static short rotate_table[] =
// Tourne une icône dans une direction donnée.
BOOL Rotate(short &icon, short direct)
bool Rotate(short &icon, short direct)
{
short* pTable = rotate_table;
short i;

View File

@ -4,13 +4,13 @@
#pragma once
extern
BOOL Action(short action, short direct,
bool Action(short action, short direct,
short &phase, short &step,
short &channel, short &icon, POINT &pos, short &posZ,
short &sound);
extern
BOOL Rotate(short &icon, short direct);
bool Rotate(short &icon, short direct);
extern
int GetIconDirect(short icon);