diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-05-17 10:16:50 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-05-17 10:26:17 +0800 |
commit | 04c1934b38f3844504fbf73f428797d76d741c47 (patch) | |
tree | 44bfbd3d1ac9149402a0447080158f186ee2d33c /indra/llwindow/llwindowsdl.cpp | |
parent | 52784ad1722e515d9fe49ceddc9c5daf74656e77 (diff) |
More misleading indentation fixes
Diffstat (limited to 'indra/llwindow/llwindowsdl.cpp')
-rw-r--r-- | indra/llwindow/llwindowsdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index 086db4b33b..f0a596f70b 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -501,7 +501,7 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B // We need stencil support for a few (minor) things. if (!getenv("LL_GL_NO_STENCIL")) SDL_GL_SetAttribute(SDL_GL_STENCIL_SIZE, 8); - SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, (bits <= 16) ? 1 : 8); + SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, (bits <= 16) ? 1 : 8); // *FIX: try to toggle vsync here? |