medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 47045a3573127bac89385c6246ac4706ba56891c
parent cd5d96e3e9bf7f9dec3362eca6003101589788d6
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Fri Oct 14 20:52:57 +0300

Overflow...

Diffstat:
pp.cc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pp.cc b/pp.cc @@ -218,7 +218,7 @@ static void write_tile( "%s/%d_%d_normals.lz4", dir.c_str(), tx, ty ); } -static u8 arena_memory[ megabytes( 1 ) ]; +static u8 arena_memory[ megabytes( 16 ) ]; int main( int argc, char ** argv ) { MemoryArena arena; memarena_init( &arena, arena_memory, array_count( arena_memory ) );