Get rid of useless cast

This commit is contained in:
twinaphex 2015-11-17 08:47:42 +01:00
parent e6e7dd1c3b
commit b5929e800f
1 changed files with 1 additions and 1 deletions

View File

@ -846,7 +846,7 @@ static void gx_resize(void *data)
int x = 0, y = 0; int x = 0, y = 0;
gx_video_t *gx = (gx_video_t*)data; gx_video_t *gx = (gx_video_t*)data;
settings_t *settings = config_get_ptr(); settings_t *settings = config_get_ptr();
const global_t *global = (const global_t*)global_get_ptr(); const global_t *global = global_get_ptr();
if (!gx) if (!gx)
return; return;