Linux build fix.. I think..
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2355 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
691be5eec4
commit
5057d3b446
|
@ -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
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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"));
|
||||
|
|
Loading…
Reference in New Issue