mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 15:55:31 +01:00
Fixes Sorting in Linux, already tested in Windows. and if logging isn't enabled when loading a dynamic library in Linux, it will print instead of log
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@527 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
6c007ceff0
commit
39aed329f9
@ -81,7 +81,11 @@ bool DynamicLibrary::Load(const char* filename)
|
|||||||
library = dlopen(filename, RTLD_NOW | RTLD_LOCAL);
|
library = dlopen(filename, RTLD_NOW | RTLD_LOCAL);
|
||||||
if (!library)
|
if (!library)
|
||||||
{
|
{
|
||||||
LOG(MASTER_LOG, "Error loading DLL %s: %s", filename, dlerror());
|
#ifdef LOGGING
|
||||||
|
LOG(MASTER_LOG, "Error loading DLL %s: %s", filename, dlerror());
|
||||||
|
#else
|
||||||
|
printf("Error loading DLL %s: %s", filename, dlerror());
|
||||||
|
#endif
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
@ -154,7 +154,7 @@ CFrame::CFrame(wxFrame* parent,
|
|||||||
|
|
||||||
m_GameListCtrl = new CGameListCtrl(m_Panel, LIST_CTRL,
|
m_GameListCtrl = new CGameListCtrl(m_Panel, LIST_CTRL,
|
||||||
wxDefaultPosition, wxDefaultSize,
|
wxDefaultPosition, wxDefaultSize,
|
||||||
wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT | wxLC_SINGLE_SEL | wxLC_SORT_ASCENDING);
|
wxLC_REPORT | wxSUNKEN_BORDER | wxLC_ALIGN_LEFT | wxLC_SINGLE_SEL);
|
||||||
|
|
||||||
wxBoxSizer* sizerPanel = new wxBoxSizer(wxHORIZONTAL);
|
wxBoxSizer* sizerPanel = new wxBoxSizer(wxHORIZONTAL);
|
||||||
sizerPanel->Add(m_GameListCtrl, 2, wxEXPAND | wxALL);
|
sizerPanel->Add(m_GameListCtrl, 2, wxEXPAND | wxALL);
|
||||||
|
@ -47,7 +47,7 @@ class CISOFile
|
|||||||
|
|
||||||
bool operator < (const CISOFile &other) const {
|
bool operator < (const CISOFile &other) const {
|
||||||
// HACK - they end up in reverse order in the list view
|
// HACK - they end up in reverse order in the list view
|
||||||
return strcmp(m_Name.c_str(), other.m_Name.c_str()) > 0;
|
return strcasecmp(m_Name.c_str(), other.m_Name.c_str()) < 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user