diff options
author | Chris Robinson <[email protected]> | 2019-06-29 11:22:29 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-29 11:22:29 -0700 |
commit | 6790a9b44fd79f430b683cbd7761d174c530b82e (patch) | |
tree | f447c02c6ac94d715266e7b42018f1802c43f8dc /OpenAL32/Include/alError.h | |
parent | 12911cc533a94c6aa99c0db57394b75d3fcb3f67 (diff) |
Use a bool for the TrapALError flag
Diffstat (limited to 'OpenAL32/Include/alError.h')
-rw-r--r-- | OpenAL32/Include/alError.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alError.h b/OpenAL32/Include/alError.h index 3e4f2373..7b64b302 100644 --- a/OpenAL32/Include/alError.h +++ b/OpenAL32/Include/alError.h @@ -5,7 +5,7 @@ #include "logging.h" -extern ALboolean TrapALError; +extern bool TrapALError; void alSetError(ALCcontext *context, ALenum errorCode, const char *msg, ...) DECL_FORMAT(printf, 3, 4); |