1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-09-20 04:24:48 +00:00

Move QB_TRUE and QB_FALSE

This commit is contained in:
Matthew Kilgore 2024-02-11 21:46:33 -05:00
parent 799468fb3b
commit 1daea10f53
2 changed files with 3 additions and 3 deletions

View file

@ -97,9 +97,6 @@
# endif # endif
# define QB_FALSE 0
# define QB_TRUE -1
#include "error_handle.h" #include "error_handle.h"
#include "qbs.h" #include "qbs.h"

View file

@ -55,4 +55,7 @@
# endif # endif
#endif #endif
#define QB_FALSE 0
#define QB_TRUE -1
#endif #endif