[cexpr] Correct bool's backing value type

Using int instead of bool probably won't work well if QF ever finds
itself on a big-endian system again.
This commit is contained in:
Bill Currie 2024-09-24 11:07:32 +09:00
parent c0f4a2143f
commit 23e2fff44a

View file

@ -108,7 +108,7 @@ exprtype_t cexpr_bool = {
.get_string = bool_get_string,
};
static int bool_values[] = {
static bool bool_values[] = {
false,
true,
};