(iOS) Prevent unused variable 'buf' warning

This commit is contained in:
twinaphex 2016-06-05 07:02:44 +02:00
parent e4d202458a
commit ca6f539ff5

View File

@ -412,10 +412,10 @@ static void cocoagl_gfx_ctx_get_video_size(void *data, unsigned* width, unsigned
static void cocoagl_gfx_ctx_update_window_title(void *data)
{
static char buf[128] = {0};
static char buf_fps[128] = {0};
settings_t *settings = config_get_ptr();
#if defined(HAVE_COCOA)
static char buf[128] = {0};
ui_window_cocoa_t view;
view.data = (CocoaView*)nsview_get_ptr();