mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-15 22:01:01 +00:00
[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:
parent
c0f4a2143f
commit
23e2fff44a
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ exprtype_t cexpr_bool = {
|
|||
.get_string = bool_get_string,
|
||||
};
|
||||
|
||||
static int bool_values[] = {
|
||||
static bool bool_values[] = {
|
||||
false,
|
||||
true,
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue