fix linux compilation

This commit is contained in:
Megamouse 2020-11-19 23:41:16 +01:00
parent 321e7d6977
commit fbe91fb245
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,9 @@
// Copyright 2007,2008,2010 Segher Boessenkool <segher@kernel.crashing.org>
// Copyright 2007,2008,2010 Segher Boessenkool <segher@kernel.crashing.org>
// Licensed under the terms of the GNU GPL, version 2
// http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
#include "utils.h"
#include <string>
void bn_print(char *name, u8 *a, u32 n)
{

View File

@ -1501,7 +1501,7 @@ game_boot_result Emulator::Load(const std::string& title_id, bool add_only, bool
if (disc.empty() && !bdvd_dir.empty() && m_path != hdd0_boot && fs::is_file(hdd0_boot))
{
// Booting game update
sys_log.success("Updates found at /dev_hdd0/game/%s/!", m_title_id);
sys_log.success("Updates found at /dev_hdd0/game/%s/", m_title_id);
return m_path = hdd0_boot, Load(m_title_id, false, force_global_config, true);
}