Skip to content

Commit f685978

Browse files
committed
image_core: Rename to 'Image Viewer'
1 parent 25eba69 commit f685978

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

cores/libretro-imageviewer/image_core.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@ static const char* IMAGE_CORE_PREFIX(valid_extensions) = image_formats + 1;
101101

102102
void IMAGE_CORE_PREFIX(retro_get_system_info)(struct retro_system_info *info)
103103
{
104-
info->library_name = "image display";
105-
info->library_version = "v0.1";
104+
info->library_name = "Image Viewer";
105+
info->library_version = "";
106106
info->need_fullpath = true;
107107
info->block_extract = false;
108108
info->valid_extensions = IMAGE_CORE_PREFIX(valid_extensions);

menu/drivers/ozone.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8707,7 +8707,7 @@ static enum menu_action ozone_parse_menu_entry_action(
87078707
&& (ozone->show_thumbnail_bar))
87088708
{
87098709
/* Allow launch if already using "imageviewer" core */
8710-
if (string_is_equal(runloop_state_get_ptr()->system.info.library_name, "image display"))
8710+
if (string_is_equal(runloop_state_get_ptr()->system.info.library_name, "Image Viewer"))
87118711
break;
87128712

87138713
if (ozone->flags2 & OZONE_FLAG2_SHOW_FULLSCREEN_THUMBNAILS)

menu/drivers/xmb.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5953,7 +5953,7 @@ static enum menu_action xmb_parse_menu_entry_action(
59535953
&& xmb_get_system_tab(xmb, (unsigned)xmb->categories_selection_ptr) == XMB_SYSTEM_TAB_MAIN)
59545954
{
59555955
/* Allow launch if already using "imageviewer" core */
5956-
if (string_is_equal(runloop_state_get_ptr()->system.info.library_name, "image display"))
5956+
if (string_is_equal(runloop_state_get_ptr()->system.info.library_name, "Image Viewer"))
59575957
break;
59585958

59595959
if (xmb->show_fullscreen_thumbnails)

0 commit comments

Comments
 (0)