fixed up CopySettingsFile and idef'd away MSWDrawSubItem
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1371 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
9a7a02fe63
commit
e033e31064
|
@ -240,10 +240,10 @@ void CopySettingsFile(std::string DeviceName)
|
|||
else
|
||||
Source += "setting-eur.txt";
|
||||
|
||||
std::string Target = FULL_WII_USER_DIR + DeviceName;
|
||||
std::string Target = FULL_WII_USER_DIR + File::SanitizePath(DeviceName.c_str());
|
||||
|
||||
// Check if the target dir exists, otherwise create it
|
||||
std::string TargetDir = Target.substr(0, Target.find_last_of("/"));
|
||||
std::string TargetDir = Target.substr(0, Target.find_last_of(DIR_SEP));
|
||||
if(!File::IsDirectory(TargetDir.c_str())) File::CreateDirectoryStructure(Target.c_str());
|
||||
|
||||
if (File::Copy(Source.c_str(), Target.c_str()))
|
||||
|
|
|
@ -700,7 +700,7 @@ void CCodeWindow::UpdateLists()
|
|||
u32 caller_addr = symbol->callers[i].callAddress;
|
||||
Symbol *caller_symbol = g_symbolDB.GetSymbolFromAddr(caller_addr);
|
||||
if (caller_symbol) {
|
||||
int idx = callers->Append(wxString::Format( _T("< %s (%08x)"), caller_symbol->name.c_str(), caller_addr));
|
||||
int idx = callers->Append(wxString::Format( wxT("< %s (%08x)"), caller_symbol->name.c_str(), caller_addr));
|
||||
callers->SetClientData(idx, (void*)caller_addr);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -90,7 +90,7 @@ CRegisterView::Update()
|
|||
Refresh();
|
||||
}
|
||||
|
||||
|
||||
#ifdef _WIN32
|
||||
bool
|
||||
CRegisterView::MSWDrawSubItem(wxPaintDC& rPainDC, int item, int subitem)
|
||||
{
|
||||
|
@ -130,11 +130,7 @@ CRegisterView::MSWDrawSubItem(wxPaintDC& rPainDC, int item, int subitem)
|
|||
}
|
||||
break;
|
||||
}
|
||||
|
||||
//
|
||||
#endif
|
||||
|
||||
return(Result);
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -39,7 +39,9 @@ class CRegisterView
|
|||
u32 m_CachedRegs[32];
|
||||
bool m_CachedRegHasChanged[32];
|
||||
|
||||
#ifdef _WIN32
|
||||
virtual bool MSWDrawSubItem(wxPaintDC& rPainDC, int item, int subitem);
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
@ -60,7 +60,7 @@ void CPBView::Update()
|
|||
Refresh();
|
||||
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
bool CPBView::MSWDrawSubItem(wxPaintDC& rPainDC, int item, int subitem)
|
||||
{
|
||||
bool Result = false;
|
||||
|
@ -121,3 +121,4 @@ bool CPBView::MSWDrawSubItem(wxPaintDC& rPainDC, int item, int subitem)
|
|||
return Result;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -33,7 +33,10 @@ public:
|
|||
private:
|
||||
DECLARE_EVENT_TABLE()
|
||||
bool m_CachedRegHasChanged[64];
|
||||
|
||||
#ifdef _WIN32
|
||||
virtual bool MSWDrawSubItem(wxPaintDC& rPainDC, int item, int subitem);
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue