Corrected SDL_Texture check
This commit is contained in:
parent
39c93db9c2
commit
147a3e61f8
|
@ -59,7 +59,7 @@ bool PlotWindow::OnCreate()
|
|||
int w = 0, h = 0;
|
||||
SDL_GetWindowSize(m_pWindow, &w, &h);
|
||||
texture = SDL_CreateTexture(m_pRenderer, SDL_PIXELFORMAT_RGBA8888, SDL_TEXTUREACCESS_TARGET, w, h);
|
||||
if (texture != nullptr)
|
||||
if (texture == nullptr)
|
||||
throw PlotWindowException("Failed to create SDL_Texture.", this);
|
||||
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue