Removed stupid mc_ and mcu_ prefixes

This commit is contained in:
CobaltXII
2018-12-28 21:41:16 -05:00
parent c4396f94a8
commit a6c1248aad
4 changed files with 9 additions and 9 deletions

View File

@@ -113,11 +113,11 @@ int main(int argc, char** argv)
// Load the block texture array.
GLuint block_texture_array = mc_load_block_texture_array();
GLuint block_texture_array = load_block_texture_array();
// Load the block shader program.
GLuint block_shader_program = mc_load_program("../glsl/block_vertex.glsl", "../glsl/block_fragment.glsl");
GLuint block_shader_program = load_program("../glsl/block_vertex.glsl", "../glsl/block_fragment.glsl");
// Create variables to represent the position of the mouse pointer, and
// state of the mouse buttons.