Qt/Hotkeys: Show OSD message when selecting slots

This commit is contained in:
spycrab 2018-07-01 16:30:12 +02:00
parent 32382438be
commit b5141ca6ce
1 changed files with 4 additions and 0 deletions

View File

@ -1014,6 +1014,10 @@ void MainWindow::SetStateSlot(int slot)
{
Settings::Instance().SetStateSlot(slot);
m_state_slot = slot;
Core::DisplayMessage(StringFromFormat("Selected slot %d - %s", m_state_slot,
State::GetInfoStringOfSlot(m_state_slot, false).c_str()),
2500);
}
void MainWindow::PerformOnlineUpdate(const std::string& region)