diff options
author | Erik Kundiman <erik@megapahit.org> | 2025-06-03 16:20:27 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2025-06-03 16:20:27 +0800 |
commit | 9bae19198fdc7bfb71f900cfe6c1982cb2a80e4f (patch) | |
tree | 498aadebb88733f10bb0374eef5dee781d985339 /indra/llwindow/llwindowwin32.cpp | |
parent | 08d4f307b0c2281f5aa4a11329c6c6e8c625e6ea (diff) |
Revert "Fix up llexception.h's cross-platform SEH wrapper."
This reverts commit 5ed8df22cd59680a685c4ada7daa5555bf59d4fe.
Diffstat (limited to 'indra/llwindow/llwindowwin32.cpp')
-rw-r--r-- | indra/llwindow/llwindowwin32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowwin32.cpp b/indra/llwindow/llwindowwin32.cpp index a781e638ee..97bd789134 100644 --- a/indra/llwindow/llwindowwin32.cpp +++ b/indra/llwindow/llwindowwin32.cpp @@ -160,7 +160,7 @@ HGLRC SafeCreateContext(HDC &hdc) GLuint SafeChoosePixelFormat(HDC &hdc, const PIXELFORMATDESCRIPTOR *ppfd) { - return LL::seh::catcher([hdc, ppfd]{ return ChoosePixelFormat(hdc, ppfd); }); + return seh_catcher(ChoosePixelFormat(hdc, ppfd)); } //static |