--- hatari/src/gui-sdl/dlgAlert.c 2019/04/01 07:13:51 1.1.1.4 +++ hatari/src/gui-sdl/dlgAlert.c 2019/04/01 07:15:41 1.1.1.6 @@ -16,7 +16,7 @@ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License (gpl.txt) for more details. */ -const char DlgAlert_rcsid[] = "Hatari $Id: dlgAlert.c,v 1.1.1.4 2019/04/01 07:13:51 root Exp $"; +const char DlgAlert_rcsid[] = "Hatari $Id: dlgAlert.c,v 1.1.1.6 2019/04/01 07:15:41 root Exp $"; #include @@ -36,7 +36,7 @@ static char dlglines[MAX_LINES][50+1]; extern int HookedAlertQuery(const char* szMessage); // Must return TRUE if OK clicked, FALSE otherwise // Runtime switch to activate/deactivate alert hooks - BOOL useAlertHooks = FALSE; + bool useAlertHooks = FALSE; #endif #define DLGALERT_OK 5 @@ -131,7 +131,7 @@ static int DlgAlert_ShowDlg(const char * char *t = (char *)malloc(strlen(text)+1); char *orig_t = t; int lines, i, len, offset; - BOOL bOldMouseVisibility; + bool bOldMouseVisibility; int nOldMouseX, nOldMouseY; strcpy(t, text);