Skip to content

Commit

Permalink
Add RPCS3 version to logging
Browse files Browse the repository at this point in the history
Also fixed the link pointing to the RPCS3 forum.
  • Loading branch information
tambry authored and Nekotekina committed Sep 7, 2015
1 parent 09673c9 commit de97c8e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions rpcs3/Emu/System.cpp
Original file line number Diff line number Diff line change
@@ -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"
Expand Down Expand Up @@ -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:");
Expand Down Expand Up @@ -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);
Expand All @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Gui/AboutDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
Binary file modified rpcs3/resource.h
Binary file not shown.

0 comments on commit de97c8e

Please sign in to comment.