updated Readme

This commit is contained in:
vurtun 2015-05-11 14:43:44 +02:00
parent 64db4c0b0a
commit 074172c1b3
1 changed files with 2 additions and 2 deletions

View File

@ -178,9 +178,9 @@ struct gui_memory_status status;
struct gui_command_list list;
struct gui_command_buffer buffer;
allocator.userdata = your_allocator
allocator.userdata = your_allocator;
allocator.alloc = your_alloc_function;
allocator.realloc = your_relloc_function;
allocator.realloc = your_realloc_function;
allocator.free = your_free_function;
gui_buffer_init(buffer, &allocator, 2.0f, INITAL_SIZE, 0);