Skip to content

Commit

Permalink
Various fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Nekotekina committed Sep 8, 2015
1 parent 4666f19 commit cbe83ad
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Utilities/BEType.h
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ template<typename T> class be_t

be_t(const be_t&) = default;

template<typename = std::enable_if_t<std::is_constructible<type, type>::value>> be_t(const type& value)
force_inline be_t(const type& value)
#ifdef IS_LE_MACHINE
: m_data(se_t<type, sizeof(stype)>::to(value))
#else
Expand Down Expand Up @@ -736,7 +736,7 @@ template<typename T> class le_t

le_t(const le_t&) = default;

template<typename = std::enable_if_t<std::is_constructible<type, type>::value>> le_t(const type& value)
le_t(const type& value)
: m_data(value)
{
}
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/SysCalls/Modules/cellGameExec.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ s32 cellGameGetHomeLaunchOptionPath()

s32 cellGameGetBootGameInfo(vm::ptr<u32> type, vm::ptr<char> dirName, vm::ptr<u32> execData)
{
cellGameExec.Todo("cellGameGetBootGameInfo(type=*0x%x, dirName=*0x%x, execData=*0x%x)");
cellGameExec.Todo("cellGameGetBootGameInfo(type=*0x%x, dirName=*0x%x, execData=*0x%x)", type, dirName, execData);

// TODO: Support more boot types
*type = CELL_GAME_GAMETYPE_SYS;
Expand Down
2 changes: 1 addition & 1 deletion rpcs3/Emu/SysCalls/Modules/cellSail.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void playerBoot(vm::ptr<CellSailPlayer> pSelf, u64 userParam)

s32 cellSailMemAllocatorInitialize(vm::ptr<CellSailMemAllocator> pSelf, vm::ptr<CellSailMemAllocatorFuncs> pCallbacks)
{
cellSail.Warning("cellSailMemAllocatorInitialize(pSelf_addr=*0x%x, pCallbacks_addr=*0x%x)", pSelf, pCallbacks);
cellSail.Warning("cellSailMemAllocatorInitialize(pSelf=*0x%x, pCallbacks=*0x%x)", pSelf, pCallbacks);

pSelf->callbacks = pCallbacks;

Expand Down
3 changes: 0 additions & 3 deletions rpcs3/Emu/System.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#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 @@ -208,8 +207,6 @@ 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
5 changes: 4 additions & 1 deletion rpcs3/Gui/MainFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ MainFrame::MainFrame()
, m_sys_menu_opened(false)
{

SetLabel(wxString::Format(_PRGNAME_ " " RPCS3_GIT_VERSION));
SetLabel(wxString::Format(_PRGNAME_ " " _PRGVER_ " " RPCS3_GIT_VERSION));

wxMenuBar* menubar = new wxMenuBar();

Expand Down Expand Up @@ -161,6 +161,9 @@ MainFrame::MainFrame()

wxGetApp().Bind(wxEVT_KEY_DOWN, &MainFrame::OnKeyDown, this);
wxGetApp().Bind(wxEVT_DBG_COMMAND, &MainFrame::UpdateUI, this);

LOG_NOTICE(GENERAL, _PRGNAME_ " " _PRGVER_ " " RPCS3_GIT_VERSION);
LOG_NOTICE(GENERAL, "");
}

MainFrame::~MainFrame()
Expand Down

0 comments on commit cbe83ad

Please sign in to comment.