mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-12 20:11:39 +00:00
update Cheat files
This commit is contained in:
parent
9ab8c1e433
commit
cbfd634a4b
217 changed files with 2263 additions and 1880 deletions
|
@ -157,14 +157,14 @@ void ToolBar::UpdatePausePlayButtonState(const bool playing_state)
|
|||
{
|
||||
if (playing_state)
|
||||
{
|
||||
disconnect(m_pause_play_action, 0, 0, 0);
|
||||
disconnect(m_pause_play_action, nullptr, nullptr, nullptr);
|
||||
m_pause_play_action->setText(tr("Pause"));
|
||||
m_pause_play_action->setIcon(Resources::GetScaledThemeIcon("pause"));
|
||||
connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PausePressed);
|
||||
}
|
||||
else
|
||||
{
|
||||
disconnect(m_pause_play_action, 0, 0, 0);
|
||||
disconnect(m_pause_play_action, nullptr, nullptr, nullptr);
|
||||
m_pause_play_action->setText(tr("Local Play"));
|
||||
m_pause_play_action->setIcon(Resources::GetScaledThemeIcon("play"));
|
||||
connect(m_pause_play_action, &QAction::triggered, this, &ToolBar::PlayPressed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue