From 340cea2a0f10a4ccf8bc014166c8b76face215f3 Mon Sep 17 00:00:00 2001 From: CobaltXII Date: Thu, 3 Jan 2019 15:36:36 -0500 Subject: [PATCH] Interface textures are now loaded on initialization --- src/main.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 4b8d36c..4e429b6 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -173,6 +173,10 @@ int main(int argc, char** argv) GLuint block_texture_array = load_block_texture_array(); + // Load the interface textures. + + load_interface_textures(); + // Load the block face_info* array. load_block_face_info_array();