diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.h b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.h index 459e0b87d2..0efd565d1f 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.h +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_Device_es.h @@ -54,7 +54,7 @@ #include "WII_IPC_HLE_Device.h" #include "../VolumeHandler.h" -#include "../boot/Boot_WiiWAD.h" +#include "../Boot/Boot_WiiWAD.h" struct SContentAccess diff --git a/Source/Core/DiscIO/Src/DriveBlob.h b/Source/Core/DiscIO/Src/DriveBlob.h index 41aad2f09c..efd0d53cee 100644 --- a/Source/Core/DiscIO/Src/DriveBlob.h +++ b/Source/Core/DiscIO/Src/DriveBlob.h @@ -32,7 +32,7 @@ class DriveReader : public SectorReader { private: DriveReader(const char *drive); - void DriveReader::SetSectorSize(int blocksize); + void SetSectorSize(int blocksize); enum { CACHE_SIZE = 32 }; int m_blocksize; u8* cache[CACHE_SIZE]; diff --git a/Source/Core/DolphinWX/Src/GameListCtrl.cpp b/Source/Core/DolphinWX/Src/GameListCtrl.cpp index 12a68c3182..d276d18c6a 100644 --- a/Source/Core/DolphinWX/Src/GameListCtrl.cpp +++ b/Source/Core/DolphinWX/Src/GameListCtrl.cpp @@ -318,7 +318,7 @@ void CGameListCtrl::InsertItemInReportView(long _Index) if (!issues.empty()) { issues = "Problems: " + issues; - item.SetText(_(issues.c_str() ) ); + item.SetText(wxString::FromAscii(issues.c_str())); } else item.SetText(_("Problems: Other"));