aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-09-14 02:10:42 -0700
committerChris Robinson <[email protected]>2011-09-14 02:10:42 -0700
commit2171aaa35c2c8487107699e183519f8aa3a79e71 (patch)
treee25f940debf1e15c004935bdc108720fe8cd5b24 /Alc/ALc.c
parent97024151e49d97ed3ae9d73a9426de0f1a9ebb0f (diff)
Use IsDebuggerPresent instead of the VC-only __try/__except
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index c5329cfa..79e759f6 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -1346,12 +1346,9 @@ ALCvoid alcSetError(ALCdevice *device, ALCenum errorCode)
if(TrapALCError)
{
#ifdef _WIN32
- /* Safely catch a breakpoint exception that wasn't caught by a debugger */
- __try {
+ /* DebugBreak() will cause an exception if there is no debugger */
+ if(IsDebuggerPresent())
DebugBreak();
- } __except((GetExceptionCode()==EXCEPTION_BREAKPOINT) ?
- EXCEPTION_EXECUTE_HANDLER : EXCEPTION_CONTINUE_SEARCH) {
- }
#elif defined(SIGTRAP)
kill(getpid(), SIGTRAP);
#endif