Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Source/Core/DolphinLibretro/Boot.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -304,8 +304,12 @@ bool retro_load_game(const struct retro_game_info* game)
const std::string codehandler = std::string(sys_dir) + DIR_SEP GECKO_CODE_HANDLER;

if (!File::Exists(codehandler))
{
OSD::AddMessage(fmt::format("Core file {} missing! Go to Online Updater ->\nCore System Files Downloader -> Install Dolphin.zip",
GECKO_CODE_HANDLER), OSD::Duration::VERY_LONG, OSD::Color::RED);
ERROR_LOG_FMT(BOOT, "Core file {} missing! Go to Online Updater -> Core System Files Downloader -> Install Dolphin.zip",
GECKO_CODE_HANDLER);
}

// Main.Core
Config::SetBase(Config::MAIN_CPU_CORE,
Expand Down
Loading