From 8e29fd5a98c77e2232b3ab8388f60c3097fc94ec Mon Sep 17 00:00:00 2001 From: "Charles J. Cliffe" Date: Thu, 22 Oct 2015 18:29:49 -0400 Subject: [PATCH] missed texture init check on drawPanelContents --- src/panel/WaterfallPanel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panel/WaterfallPanel.cpp b/src/panel/WaterfallPanel.cpp index 0fd2573..9aad159 100644 --- a/src/panel/WaterfallPanel.cpp +++ b/src/panel/WaterfallPanel.cpp @@ -151,7 +151,7 @@ void WaterfallPanel::update() { } void WaterfallPanel::drawPanelContents() { - if (!waterfall[0]) { + if (!texInitialized.load()) { return; }