diff options
Diffstat (limited to 'src/state.c')
| -rw-r--r-- | src/state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state.c b/src/state.c index 6db0812..ce7d52f 100644 --- a/src/state.c +++ b/src/state.c @@ -122,13 +122,13 @@ void stateFree() { for ( int i = 0; i < state->imageCount; ++i ) { if ( state->images[i] != NULL ) { UnloadImage( *state->images[i] ); - free( state->images[i] ); + // free( state->images[i] ); } } for ( int i = 0; i < state->textureCount; ++i ) { if ( state->textures[i] != NULL ) { texturesFreeTexture(i); - free( state->textures[i] ); + // free( state->textures[i] ); } } for ( int i = 0; i < state->fontCount; ++i ) { |
