Qt: Fix uninitialized variable

This commit is contained in:
Vicki Pfau 2024-01-30 16:06:57 -08:00
parent 1723a353c2
commit 530b997d7e
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ protected:
private:
Ui::DebuggerConsole m_ui;
int m_historyOffset;
int m_historyOffset = 0;
DebuggerConsoleController* m_consoleController;
};