aboutsummaryrefslogtreecommitdiffstats
path: root/examples/alconvolve.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/alconvolve.c')
-rw-r--r--examples/alconvolve.c4
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)
{