From 7a0b46075ca5fcd46fc6b161f84c13e4cb7d8cf4 Mon Sep 17 00:00:00 2001 From: joshhuelsman Date: Fri, 30 Jan 2015 17:07:57 -0500 Subject: [PATCH] Fix stbte_create_map declaration --- stb_tilemap_editor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stb_tilemap_editor.h b/stb_tilemap_editor.h index ed56a10..e751980 100644 --- a/stb_tilemap_editor.h +++ b/stb_tilemap_editor.h @@ -339,7 +339,7 @@ enum // creation // -extern stbte_tilemap *stbte_create(int map_x, int map_y, int map_layers, int spacing_x, int spacing_y, int max_tiles); +extern stbte_tilemap *stbte_create_map(int map_x, int map_y, int map_layers, int spacing_x, int spacing_y, int max_tiles); // create an editable tilemap // map_x : dimensions of map horizontally (user can change this in editor), <= STBTE_MAX_TILEMAP_X // map_y : dimensions of map vertically (user can change this in editor) <= STBTE_MAX_TILEMAP_Y