From 276a78b14b4334938af0df3232126eda1b7b9540 Mon Sep 17 00:00:00 2001 From: sudonim1 Date: Fri, 28 May 2010 10:52:04 +0000 Subject: [PATCH] Oops, games should boot again now. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@3093 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/R5900.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pcsx2/R5900.cpp b/pcsx2/R5900.cpp index e003c0d84b..d9bd7df118 100644 --- a/pcsx2/R5900.cpp +++ b/pcsx2/R5900.cpp @@ -627,7 +627,10 @@ void __fastcall eeloadReplaceOSDSYS() const wxString &elf_override = GetCoreThread().GetElfOverride(); - cdvdReloadElfInfo(L"host:" + elf_override); + if (!elf_override.IsEmpty()) + cdvdReloadElfInfo(L"host:" + elf_override); + else + cdvdReloadElfInfo(); // didn't recognise an ELF if (ElfEntry == -1) {