diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-05-18 17:33:50 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-05-18 17:33:50 +0800 |
commit | 08a9ef2354feb1b4008c0e33592837a88275f3a5 (patch) | |
tree | 7c0f34c608ea205499b2dc7a74e60813eab80b8d | |
parent | c4206077c4c76947f2f40472516b53f7ef6162f2 (diff) |
Colour bits test not done on Linux either
Cause last time I checked, it didn't pass on Fedora.
-rw-r--r-- | indra/llwindow/llwindowsdl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llwindow/llwindowsdl.cpp b/indra/llwindow/llwindowsdl.cpp index f0a596f70b..f6b1f7383e 100644 --- a/indra/llwindow/llwindowsdl.cpp +++ b/indra/llwindow/llwindowsdl.cpp @@ -730,7 +730,7 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B // relaxed about if we have to. if (colorBits < 32) { -#if LL_LINUX +#if 0 close(); setupFailure( "Second Life requires True Color (32-bit) to run in a window.\n" @@ -741,7 +741,7 @@ BOOL LLWindowSDL::createContext(int x, int y, int width, int height, int bits, B "Error", OSMB_OK); return FALSE; -#endif // LL_LINUX +#endif } #if 0 // *FIX: we're going to brave it for now... |