From 147a3e61f80678071abc8db94ba4601bc6e0caf5 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 28 Aug 2020 14:32:59 +0200 Subject: [PATCH] Corrected SDL_Texture check --- ComplexPlotting/PlotWindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ComplexPlotting/PlotWindow.cpp b/ComplexPlotting/PlotWindow.cpp index 423120e..8bbf92a 100644 --- a/ComplexPlotting/PlotWindow.cpp +++ b/ComplexPlotting/PlotWindow.cpp @@ -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;