Corrected SDL_Texture check

This commit is contained in:
Robert 2020-08-28 14:32:59 +02:00
parent 39c93db9c2
commit 147a3e61f8

View file

@ -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;