mirror of
https://github.com/raysan5/raylib.git
synced 2026-08-14 03:04:27 +00:00
[rlsw] Fix #ifdef -> #if for RLSW_DOUBLE_BUFFERING in sw_default_framebuffer_free() (#6054)
This commit is contained in:
2
src/external/rlsw.h
vendored
2
src/external/rlsw.h
vendored
@@ -2524,7 +2524,7 @@ static void sw_default_framebuffer_free(sw_default_framebuffer_t *fb)
|
||||
{
|
||||
sw_texture_free(&fb->color);
|
||||
sw_texture_free(&fb->depth);
|
||||
#ifdef RLSW_DOUBLE_BUFFERING
|
||||
#if RLSW_DOUBLE_BUFFERING
|
||||
sw_texture_free(&fb->backColor);
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user