mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-05 17:15:49 +00:00
Source: MP Turn Counter
This commit is contained in:
parent
59a3ef26ce
commit
53905e689d
7 changed files with 32 additions and 2 deletions
|
@ -88,6 +88,7 @@ void GeneralWidget::CreateWidgets()
|
|||
auto* m_options_layout = new QGridLayout();
|
||||
|
||||
m_show_ping = new GraphicsBool(tr("Show NetPlay Ping"), Config::GFX_SHOW_NETPLAY_PING);
|
||||
m_show_turn_count = new GraphicsBool(tr("Show MP Turn"), Config::GFX_SHOW_MP_TURN);
|
||||
m_autoadjust_window_size =
|
||||
new GraphicsBool(tr("Auto-Adjust Window Size"), Config::MAIN_RENDER_WINDOW_AUTOSIZE);
|
||||
m_show_messages =
|
||||
|
@ -101,6 +102,7 @@ void GeneralWidget::CreateWidgets()
|
|||
|
||||
m_options_layout->addWidget(m_show_messages, 0, 1);
|
||||
m_options_layout->addWidget(m_show_ping, 1, 1);
|
||||
m_options_layout->addWidget(m_show_turn_count, 2, 0);
|
||||
|
||||
// Other
|
||||
auto* shader_compilation_box = new QGroupBox(tr("Shader Compilation"));
|
||||
|
|
|
@ -50,6 +50,7 @@ private:
|
|||
|
||||
// Options
|
||||
GraphicsBool* m_show_ping;
|
||||
GraphicsBool* m_show_turn_count;
|
||||
GraphicsBool* m_autoadjust_window_size;
|
||||
GraphicsBool* m_show_messages;
|
||||
GraphicsBool* m_render_main_window;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue