mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Fix a few warnings
This commit is contained in:
@ -138,7 +138,7 @@ void AdvancedConfigPane::OnClockOverrideSliderChanged(wxCommandEvent& event)
|
||||
UpdateCPUClock();
|
||||
}
|
||||
|
||||
u32 ToSeconds(wxDateTime date)
|
||||
static u32 ToSeconds(wxDateTime date)
|
||||
{
|
||||
return static_cast<u32>(date.GetValue().GetValue() / 1000);
|
||||
}
|
||||
|
@ -30,7 +30,7 @@
|
||||
#include "DolphinWX/X11Utils.h"
|
||||
#endif
|
||||
|
||||
static const std::array<std::string, 29> language_ids = {
|
||||
static const std::array<std::string, 29> language_ids = {{
|
||||
"",
|
||||
|
||||
"ms", "ca", "cs", "da", "de", "en", "es", "fr", "hr", "it", "hu", "nl",
|
||||
@ -38,7 +38,7 @@ static const std::array<std::string, 29> language_ids = {
|
||||
"pl", "pt", "pt_BR", "ro", "sr", "sv", "tr",
|
||||
|
||||
"el", "ru", "ar", "fa", "ko", "ja", "zh_CN", "zh_TW",
|
||||
};
|
||||
}};
|
||||
|
||||
InterfaceConfigPane::InterfaceConfigPane(wxWindow* parent, wxWindowID id) : wxPanel(parent, id)
|
||||
{
|
||||
|
Reference in New Issue
Block a user