mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
small code fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1106 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -181,9 +181,10 @@ SetTitle(wxT("Sound Debugging"));
|
||||
m_settings->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
|
||||
m_settings->SetMinSize(wxSize(m_settings->GetSize().GetWidth() - 40,
|
||||
m_settings->GetCount() * 15));
|
||||
#ifdef _WIN32
|
||||
for (int i = 0; i < m_settings->GetCount(); ++i)
|
||||
m_settings->GetItem(i)->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE));
|
||||
|
||||
#endif
|
||||
m_checkSizer2->Add(m_settings, 0, 0, 0);
|
||||
// ------------------------
|
||||
|
||||
|
@ -55,7 +55,7 @@ is closed */
|
||||
// -------------
|
||||
void startConsoleWin(int width, int height, char* fname)
|
||||
{
|
||||
#if defined(DEBUG_HLE) defined(_WIN32)
|
||||
#if defined(DEBUG_HLE) && defined(_WIN32)
|
||||
|
||||
AllocConsole();
|
||||
|
||||
@ -220,4 +220,4 @@ HWND GetConsoleHwnd(void)
|
||||
return(hwndFound);
|
||||
|
||||
}
|
||||
#endif // win32
|
||||
#endif // win32
|
||||
|
Reference in New Issue
Block a user