From f6b30b16800dcaa6e8094c66a8ee3e56923bb396 Mon Sep 17 00:00:00 2001 From: John Peterson Date: Sun, 16 Nov 2008 22:05:07 +0000 Subject: [PATCH] Bugfix, and moved readme file git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1190 8ced0084-cf51-0410-be5f-012b33b47a6e --- Data/User/{Wii/shared2/sys => Config}/readme.txt | 0 Source/Plugins/Plugin_VideoDX9/Src/main.cpp | 2 +- Source/Plugins/Plugin_Wiimote_Test/Src/ConfigDlg.cpp | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename Data/User/{Wii/shared2/sys => Config}/readme.txt (100%) diff --git a/Data/User/Wii/shared2/sys/readme.txt b/Data/User/Config/readme.txt similarity index 100% rename from Data/User/Wii/shared2/sys/readme.txt rename to Data/User/Config/readme.txt diff --git a/Source/Plugins/Plugin_VideoDX9/Src/main.cpp b/Source/Plugins/Plugin_VideoDX9/Src/main.cpp index 93f9c51856..b2ad7267cc 100644 --- a/Source/Plugins/Plugin_VideoDX9/Src/main.cpp +++ b/Source/Plugins/Plugin_VideoDX9/Src/main.cpp @@ -47,7 +47,7 @@ SVideoInitialize g_VideoInitialize; int initCount = 0; -void DllDebugger(HWND _hParent) +void DllDebugger(HWND _hParent, bool Show) { // TODO: implement } diff --git a/Source/Plugins/Plugin_Wiimote_Test/Src/ConfigDlg.cpp b/Source/Plugins/Plugin_Wiimote_Test/Src/ConfigDlg.cpp index 835bc200d7..65f7d2748f 100644 --- a/Source/Plugins/Plugin_Wiimote_Test/Src/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_Wiimote_Test/Src/ConfigDlg.cpp @@ -65,7 +65,7 @@ void ConfigDialog::CreateGUIControls() // General sbBasic = new wxStaticBoxSizer(wxVERTICAL, m_PageGeneral, wxT("Basic Settings")); - m_SidewaysDPad = new wxCheckBox(m_PageGeneral, ID_SIDEWAYSDPAD, wxT("Enable Sideways D-Pad"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator); + m_SidewaysDPad = new wxCheckBox(m_PageGeneral, ID_SIDEWAYSDPAD, wxT("Sideways D-Pad"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator); m_SidewaysDPad->SetValue(g_Config.bSidewaysDPad); m_WideScreen = new wxCheckBox(m_PageGeneral, ID_WIDESCREEN, wxT("WideScreen Mode (for correct aiming)"), wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator); m_WideScreen->SetValue(g_Config.bWideScreen);