diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 31e081a06d3a..40f55da23d07 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1,6 +1,7 @@ #include "stdafx.h" #include "Utilities/Log.h" #include "Utilities/File.h" +#include "git-version.h" #include "rpcs3/Ini.h" #include "Emu/Memory/Memory.h" #include "Emu/System.h" @@ -207,6 +208,8 @@ void Emulator::Load() LOG_NOTICE(LOADER, "%s -> %s", GetVFS().m_devices[i]->GetPs3Path().c_str(), GetVFS().m_devices[i]->GetLocalPath().c_str()); } + LOG_NOTICE(LOADER, ""); + LOG_NOTICE(LOADER, "RPCS3 version: %s", RPCS3_GIT_VERSION); LOG_NOTICE(LOADER, ""); LOG_NOTICE(LOADER, "Settings:"); @@ -243,6 +246,7 @@ void Emulator::Load() GetVFS().GetDeviceLocal(m_path, m_elf_path); LOG_NOTICE(LOADER, "Elf path: %s", m_elf_path); + LOG_NOTICE(LOADER, ""); } f.Open(m_elf_path); @@ -257,6 +261,7 @@ void Emulator::Load() if (!m_loader.load(f)) { LOG_ERROR(LOADER, "Loading '%s' failed", m_path.c_str()); + LOG_NOTICE(LOADER, ""); m_status = Stopped; vm::close(); return; diff --git a/rpcs3/Gui/AboutDialog.h b/rpcs3/Gui/AboutDialog.h index 4a0c6a9020da..b3b133890c6b 100644 --- a/rpcs3/Gui/AboutDialog.h +++ b/rpcs3/Gui/AboutDialog.h @@ -84,5 +84,5 @@ void AboutDialog::OpenWebsite(wxCommandEvent& WXUNUSED(event)) void AboutDialog::OpenForum(wxCommandEvent& WXUNUSED(event)) { - wxLaunchDefaultBrowser("http://forum.rpcs3.net/"); + wxLaunchDefaultBrowser("http://www.emunewz.net/forum/forumdisplay.php?fid=162"); } diff --git a/rpcs3/resource.h b/rpcs3/resource.h index 3e4adfb550a1..18aedf4013f1 100644 Binary files a/rpcs3/resource.h and b/rpcs3/resource.h differ