Skip to content

Commit

Permalink
fix missing parenthesis :/
Browse files Browse the repository at this point in the history
  • Loading branch information
alsed authored Jan 11, 2025
1 parent 532a3f4 commit e80e389
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Layers/xrRenderGL/glHW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void CHW::CreateDevice(SDL_Window* hWnd)

// Create the context
m_context = nullptr; // Clean up first
if (! (m_context = SDL_GL_CreateContext(m_window));
if (! (m_context = SDL_GL_CreateContext(m_window)));
{
Log("! Could not create drawing context:", SDL_GetError());
return;
Expand Down

0 comments on commit e80e389

Please sign in to comment.