aboutsummaryrefslogtreecommitdiffstats
path: root/OpenAL32/alSource.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2012-04-24 03:52:21 -0700
committerChris Robinson <[email protected]>2012-04-24 03:52:21 -0700
commit3e49e7914013746b70917ada00ac1d2f8903819d (patch)
treede9e184ab7986bdaa125da1f97c324ef2578b972 /OpenAL32/alSource.c
parentdec8e81211c91aa2a75f047fbe423209f685f635 (diff)
Couple small error handling fixups
Diffstat (limited to 'OpenAL32/alSource.c')
-rw-r--r--OpenAL32/alSource.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/OpenAL32/alSource.c b/OpenAL32/alSource.c
index baa0fc2c..5f52322f 100644
--- a/OpenAL32/alSource.c
+++ b/OpenAL32/alSource.c
@@ -699,8 +699,7 @@ AL_API void AL_APIENTRY alSource3i(ALuint source, ALenum param, ALint value1, AL
break;
default:
- alSetError(Context, AL_INVALID_ENUM);
- break;
+ al_throwerr(Context, AL_INVALID_ENUM);
}
}
al_endtry;