1
0
mirror of https://github.com/libretro/RetroArch synced 2024-07-08 12:15:49 +00:00

Use string_is_equal here

This commit is contained in:
twinaphex 2017-05-30 23:50:02 +02:00
parent 1af6d8a59f
commit 659668749c

View File

@ -140,7 +140,7 @@ const char *msg_hash_to_str(enum msg_hash_enums msg)
}
#endif
if (ret && string_is_not_equal_fast(ret, "null", 4))
if (ret && !string_is_equal(ret, "null"))
return ret;
return msg_hash_to_str_us(msg);