diff --git a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp index 01da7a8385..f41ef3ca61 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_IPC_HLE_WiiMote.cpp @@ -1035,7 +1035,7 @@ namespace Core LOGV(WII_IPC_WIIMOTE, 3, "Callback_WiimoteInput:"); //std::string Temp = ArrayToString(pData, _Size, 0, 50); //LOGV(WII_IPC_WIIMOTE, 3, " Data: %s", Temp.c_str()); - LOGV(WII_IPC_WIIMOTE, 3, " Channel: %s", _channelID); + //LOGV(WII_IPC_WIIMOTE, 3, " Channel: %u", _channelID); s_Usb->m_WiiMotes[0].SendL2capData(_channelID, _pData, _Size); LOGV(WII_IPC_WIIMOTE, 3, "========================================================="); diff --git a/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp b/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp index 6c6e1559b1..2722c2afec 100644 --- a/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp +++ b/Source/Plugins/Plugin_Wiimote/Src/ConfigDlg.cpp @@ -750,7 +750,12 @@ void ConfigDialog::CreateGUIControls() this->Layout(); Fit(); - Center(); + + // Center the window if there is room for it + #ifdef _WIN32 + if (GetSystemMetrics(SM_CYFULLSCREEN) > 800) + Center(); + #endif ControlsCreated = true; /////////////////////////////////