(libretro) Fix firmware_is_present()

Forgot to add the last 'return true' statement.
This commit is contained in:
rz5 2017-10-06 02:32:16 +01:00 committed by GitHub
parent a1aabb03dc
commit 661a2cb321

View File

@ -108,6 +108,8 @@ static bool firmware_is_present(unsigned region)
log_cb(RETRO_LOG_ERROR, "Firmware is missing:\n%s\n", bios_path);
return false;
}
return true;
}
static void extract_basename(char *buf, const char *path, size_t size)