From 9e4363738c9fa80e45f0c2c8e2d5eb114aebf760 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 2 Oct 2011 00:43:56 -0400 Subject: [PATCH] Further patched to compile on Windows. --- src/thread/windows/SDL_systhread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/windows/SDL_systhread.c b/src/thread/windows/SDL_systhread.c index 3c7bbae0f..a1c1c2700 100644 --- a/src/thread/windows/SDL_systhread.c +++ b/src/thread/windows/SDL_systhread.c @@ -173,7 +173,7 @@ SDL_SYS_SetupThread(const char *name) { RaiseException(0x406D1388, 0, sizeof(inf)/sizeof(DWORD), (DWORD*)&inf); } - except(EXCEPTION_CONTINUE_EXECUTION) + __except(EXCEPTION_CONTINUE_EXECUTION) { /* The program itself should ignore this bogus exception. */ }