Instantiated Hash Table

This commit is contained in:
gingerBill 2016-05-21 15:01:53 +01:00
parent 9bc6d5616e
commit 2c414c2141
3 changed files with 424 additions and 428 deletions

View File

@ -4,7 +4,7 @@ gb single-file public domain libraries for C & C++
library | latest version | category | description
----------------|----------------|----------|-------------
**gb.h** | 0.16a | misc | Helper library (Standard library _improvement_)
**gb.h** | 0.17 | misc | Helper library (Standard library _improvement_)
**gb_math.h** | 0.06d | math | Vector math library geared towards game development
**gb_gl.h** | 0.04d | graphics | OpenGL Helper Library
**gb_string.h** | 0.95 | strings | A better string library (this is built into gb.h too with custom allocator support!)

848
gb.h

File diff suppressed because it is too large Load Diff

View File

@ -1334,7 +1334,7 @@ gbgl_load_texture2d_from_file(gbglTexture *texture, b32 flip_vertically, char co
va_list va;
va_start(va, filename);
path = gb_sprintf_va(filename, va);
path = gb_bprintf_va(filename, va);
va_end(va);
stbi_set_flip_vertically_on_load(flip_vertically);