From 0f08f10a0de443f621594a40b6eff611f68dc4ae Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Wed, 23 Sep 2020 00:00:31 +0200 Subject: [PATCH] source/Game.cpp: don't need to call setClearColor() here. it is done as part of the graphics module setup. --- source/Game.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/Game.cpp b/source/Game.cpp index 1f7772f..2bbd8a0 100644 --- a/source/Game.cpp +++ b/source/Game.cpp @@ -34,8 +34,6 @@ void Game::setup() { m_graphics->init(); - m_graphics->setClearColor(0.0f, 0.0f, 0.0f); - init(); }