Frame: Convert TAS dialog C array to std::array

This commit is contained in:
Lioncash
2017-04-02 03:04:50 -04:00
parent 678905764a
commit c09f7bd84b
2 changed files with 5 additions and 3 deletions

View File

@ -4,6 +4,7 @@
#pragma once
#include <array>
#include <cstddef>
#include <mutex>
#include <string>
@ -137,7 +138,7 @@ private:
CLogWindow* m_LogWindow = nullptr;
LogConfigWindow* m_LogConfigWindow = nullptr;
FifoPlayerDlg* m_FifoPlayerDlg = nullptr;
TASInputDlg* m_tas_input_dialogs[8];
std::array<TASInputDlg*, 8> m_tas_input_dialogs{};
bool UseDebugger = false;
bool m_bBatchMode = false;
bool m_bEdit = false;