diff options
author | Chris Robinson <[email protected]> | 2013-10-07 09:54:35 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2013-10-07 11:10:49 -0700 |
commit | 4f72da00054cb25994c542c33c9a3e8c53343c28 (patch) | |
tree | f0b5baf6543de9d9487c6bde86b51b513522b17a /OpenAL32/Include | |
parent | 69d373db78634d08ee1264dbfa7233a69706c282 (diff) |
Return only true or false from the source getters and setters
Diffstat (limited to 'OpenAL32/Include')
-rw-r--r-- | OpenAL32/Include/alMain.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenAL32/Include/alMain.h b/OpenAL32/Include/alMain.h index cfe30f47..b4df28ca 100644 --- a/OpenAL32/Include/alMain.h +++ b/OpenAL32/Include/alMain.h @@ -889,7 +889,7 @@ void FillCPUCaps(ALuint capfilter); return; \ } while(0) -#define SET_ERROR_AND_RETURN_VAL(ctx, err, val) do { \ +#define SET_ERROR_AND_RETURN_VALUE(ctx, err, val) do { \ alSetError((ctx), (err)); \ return (val); \ } while(0) |