diff --git a/rpcs3/Crypto/ec.cpp b/rpcs3/Crypto/ec.cpp index cf028d431b..5fb66fbbab 100644 --- a/rpcs3/Crypto/ec.cpp +++ b/rpcs3/Crypto/ec.cpp @@ -1,8 +1,9 @@ -// Copyright 2007,2008,2010 Segher Boessenkool +// Copyright 2007,2008,2010 Segher Boessenkool // 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 void bn_print(char *name, u8 *a, u32 n) { diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index d36151eadc..fc2fff776d 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -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); }