diff options
author | Chris Robinson <[email protected]> | 2011-12-03 08:27:51 -0800 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2011-12-03 08:27:51 -0800 |
commit | 84b5311257cbd7b6f50c9b16bada58216b911547 (patch) | |
tree | 96dd917802b48fa3d8ae078a5e4e601c0e81b16c /include | |
parent | 6a97f6a327134e83b7e1722dfe61fcb7f594b655 (diff) |
Use an explicit 0 for the "no error" enums
Diffstat (limited to 'include')
-rw-r--r-- | include/AL/al.h | 2 | ||||
-rw-r--r-- | include/AL/alc.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/AL/al.h b/include/AL/al.h index 95d33988..10aeae45 100644 --- a/include/AL/al.h +++ b/include/AL/al.h @@ -287,7 +287,7 @@ typedef void ALvoid; /** Errors: No Error. */ -#define AL_NO_ERROR AL_FALSE +#define AL_NO_ERROR 0 /** * Invalid Name paramater passed to AL call. diff --git a/include/AL/alc.h b/include/AL/alc.h index 4712055c..22639f8c 100644 --- a/include/AL/alc.h +++ b/include/AL/alc.h @@ -120,7 +120,7 @@ typedef void ALCvoid; /** * No error */ -#define ALC_NO_ERROR ALC_FALSE +#define ALC_NO_ERROR 0 /** * No device |