1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-05 17:58:41 +00:00

Cleanup get_ident function

This commit is contained in:
twinaphex 2016-08-10 09:20:58 +02:00
parent 03c6564d2d
commit 61a4ff2a07

View File

@ -213,7 +213,7 @@ void *ui_companion_driver_get_main_window(void)
const char *ui_companion_driver_get_ident(void)
{
const ui_companion_driver_t *ui = ui_companion_get_ptr();
if (!ui || !ui->ident)
if (!ui)
return "null";
return ui->ident;
}