aboutsummaryrefslogtreecommitdiffstats
path: root/examples/alconvolve.c
diff options
context:
space:
mode:
authorDirk Stolle <[email protected]>2023-07-05 01:48:52 +0200
committerGitHub <[email protected]>2023-07-04 23:48:52 +0000
commite6e6a1c003ec2d80b5b11f8479ad95a4826bff89 (patch)
treec16e3cc5843dae2ef709951fb06eb7f707197530 /examples/alconvolve.c
parent3e1c6e4351e18a6c189afd08b63e44e81ed0ecf2 (diff)
Fix some typos (#872)
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)
{