From e95618fbc1a2b1d3b44de980500ba72c0b00057d Mon Sep 17 00:00:00 2001 From: iProgramInCpp Date: Sun, 31 Dec 2023 15:21:24 +0200 Subject: [PATCH] * Oops. --- source/CMakeLists.txt | 1 + source/client/gui/screens/StartMenuScreen.cpp | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt index 4917a8d..49cee81 100644 --- a/source/CMakeLists.txt +++ b/source/CMakeLists.txt @@ -172,6 +172,7 @@ add_library(reminecraftpe-core STATIC world/entity/Animal.cpp world/entity/WaterAnimal.cpp world/entity/Monster.cpp + world/entity/Rocket.cpp world/level/Dimension.cpp world/level/Material.cpp world/level/LevelListener.cpp diff --git a/source/client/gui/screens/StartMenuScreen.cpp b/source/client/gui/screens/StartMenuScreen.cpp index e3ac74f..d534fd8 100644 --- a/source/client/gui/screens/StartMenuScreen.cpp +++ b/source/client/gui/screens/StartMenuScreen.cpp @@ -549,10 +549,6 @@ void StartMenuScreen::render(int a, int b, float c) if (!crampedMode) drawSplash(); - glColor4f(1.0f, 1.0f, 1.0f, 1.0f); - m_pMinecraft->m_pTextures->loadAndBindTexture("terrain.png"); - this->blit(0, 0, 0, 0, 256, 256, 256, 256); - Screen::render(a, b, c); }