Remove some dead stores
This commit is contained in:
parent
080a79d9c5
commit
4e0b25d0fc
3
driver.c
3
driver.c
|
@ -1271,9 +1271,6 @@ void rarch_init_filter(enum retro_pixel_format colfmt)
|
||||||
geom = (struct retro_game_geometry*)&g_extern.system.av_info.geometry;
|
geom = (struct retro_game_geometry*)&g_extern.system.av_info.geometry;
|
||||||
width = geom->max_width;
|
width = geom->max_width;
|
||||||
height = geom->max_height;
|
height = geom->max_height;
|
||||||
pow2_x = 0;
|
|
||||||
pow2_y = 0;
|
|
||||||
maxsize = 0;
|
|
||||||
|
|
||||||
g_extern.filter.filter = rarch_softfilter_new(
|
g_extern.filter.filter = rarch_softfilter_new(
|
||||||
g_settings.video.softfilter_plugin,
|
g_settings.video.softfilter_plugin,
|
||||||
|
|
|
@ -157,7 +157,6 @@ static void disp_set_label(unsigned *w, unsigned type, unsigned i,
|
||||||
else if (type == MENU_FILE_DIRECTORY)
|
else if (type == MENU_FILE_DIRECTORY)
|
||||||
{
|
{
|
||||||
strlcpy(type_str, "(DIR)", type_str_size);
|
strlcpy(type_str, "(DIR)", type_str_size);
|
||||||
type = MENU_FILE_DIRECTORY;
|
|
||||||
*w = 5;
|
*w = 5;
|
||||||
}
|
}
|
||||||
else if (type == MENU_FILE_CARCHIVE)
|
else if (type == MENU_FILE_CARCHIVE)
|
||||||
|
|
Loading…
Reference in New Issue