From 171c890aa45f3cd12170dd477a6856db95ef2fb5 Mon Sep 17 00:00:00 2001 From: Migdyn Date: Sat, 29 Oct 2022 20:14:29 -0400 Subject: [PATCH] Grass is now the default texture --- include/TextureHandler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/TextureHandler.h b/include/TextureHandler.h index 7a521ac..0260641 100644 --- a/include/TextureHandler.h +++ b/include/TextureHandler.h @@ -26,7 +26,7 @@ class TextureHandler void loadAllTextures() { int textureIndex = 0; - imageData = loadTexture("data/img/gold.png"); + imageData = loadTexture("data/img/grass.png"); glPixelStorei(GL_UNPACK_ALIGNMENT, 1);