Qt: Fix fullscreen

This commit is contained in:
spycrab
2018-03-21 20:53:37 +01:00
parent 9cf22aec04
commit 8ead5be9f2
5 changed files with 25 additions and 11 deletions

View File

@ -247,6 +247,9 @@ void CodeWidget::Update()
void CodeWidget::UpdateCallstack()
{
if (Core::GetState() == Core::State::Starting)
return;
m_callstack_list->clear();
std::vector<Dolphin_Debugger::CallstackEntry> stack;