From 5ab9d82257ad5cf8277b471f82749bd8666bc232 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Sun, 19 Dec 2021 20:48:22 -0500 Subject: [PATCH] Remove mutlithreading TODO --- src/panel/weather.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/panel/weather.cpp b/src/panel/weather.cpp index 86c3bc3..ac45e5e 100644 --- a/src/panel/weather.cpp +++ b/src/panel/weather.cpp @@ -44,17 +44,12 @@ void weather::draw(){ //check if its time to update if((std::chrono::high_resolution_clock::now() - _last_update) > _update_interval){ - //TODO multithread this update(); update_texture(); } SDL_RenderCopy(board::getRenderer(), _texture, NULL, NULL); - - - //TODO add this all to one texture - } ///////////////////////////////////////////////////////////////////////////////