You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This will always add the software renderer, no matter if SDL_LEAN_AND_MEAN is defined as 0, 1 or undefined. We should be using #undef SDL_VIDEO_RENDER_SW?
Commit 387774a seemed to break this, and it may affect much more than SDL_LEAN_AND_MEAN?
The text was updated successfully, but these errors were encountered:
Currently,
SDL_LEAN_AND_MEAN
doesn't do anything, due to this#ifdef
logic (for example):SDL_VIDEO_RENDER_SW
will always be defined (as either 0 or 1, or blank), so therefore:This will always add the software renderer, no matter if
SDL_LEAN_AND_MEAN
is defined as 0, 1 or undefined. We should be using#undef SDL_VIDEO_RENDER_SW
?Commit 387774a seemed to break this, and it may affect much more than
SDL_LEAN_AND_MEAN
?The text was updated successfully, but these errors were encountered: