diff options
author | Dirk Stolle <[email protected]> | 2023-07-05 01:48:52 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-04 23:48:52 +0000 |
commit | e6e6a1c003ec2d80b5b11f8479ad95a4826bff89 (patch) | |
tree | c16e3cc5843dae2ef709951fb06eb7f707197530 /examples/alconvolve.c | |
parent | 3e1c6e4351e18a6c189afd08b63e44e81ed0ecf2 (diff) |
Fix some typos (#872)
Diffstat (limited to 'examples/alconvolve.c')
-rw-r--r-- | examples/alconvolve.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/alconvolve.c b/examples/alconvolve.c index 93fd2eb4..94b978b5 100644 --- a/examples/alconvolve.c +++ b/examples/alconvolve.c @@ -292,7 +292,7 @@ static ALuint CreateEffect(void) alGenEffects(1, &effect); alEffecti(effect, AL_EFFECT_TYPE, AL_EFFECT_CONVOLUTION_REVERB_SOFT); - /* Check if an error occured, and clean up if so. */ + /* Check if an error occurred, and clean up if so. */ err = alGetError(); if(err != AL_NO_ERROR) { @@ -391,7 +391,7 @@ static ALuint LoadSound(const char *filename) free(membuf); sf_close(sndfile); - /* Check if an error occured, and clean up if so. */ + /* Check if an error occurred, and clean up if so. */ err = alGetError(); if(err != AL_NO_ERROR) { |