diff src/dmtext.h @ 2586:9807ae37ad69

Require stdbool.h, we require C11 now.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 08 Dec 2022 15:59:22 +0200
parents 92b93a12c014
children
line wrap: on
line diff
--- a/src/dmtext.h	Thu Dec 08 15:56:36 2022 +0200
+++ b/src/dmtext.h	Thu Dec 08 15:59:22 2022 +0200
@@ -64,11 +64,11 @@
 
 
 void dmDrawBMTextConst(SDL_Surface *screen, const DMBitmapFont *font,
-    const BOOL condensed, const int mode, int xc, int yc, const char *str);
+    const bool condensed, const int mode, int xc, int yc, const char *str);
 void dmDrawBMTextVA(SDL_Surface *screen, const DMBitmapFont *font,
-    const BOOL condensed, const int mode, const int xc, const int yc, const char *fmt, va_list ap);
+    const bool condensed, const int mode, const int xc, const int yc, const char *fmt, va_list ap);
 void dmDrawBMText(SDL_Surface *screen, const DMBitmapFont *font,
-    const BOOL condensed, const int mode, const int xc, const int yc, const char *fmt, ...)
+    const bool condensed, const int mode, const int xc, const int yc, const char *fmt, ...)
     DM_ATTR_PRINTF_FMT(7, 8);