FifoPlayer: Add a description label for the currently selected object command.

Requires adding such descriptions for all BP/CP/XF registers. For now, I added descriptions for EFB copy related BP registers.
This commit is contained in:
NeoBrainX
2012-01-05 17:49:46 +01:00
committed by NeoBrainX
parent 8c62a56c71
commit 5eb24a51cf
4 changed files with 169 additions and 7 deletions

View File

@ -18,6 +18,7 @@
#ifndef __FIFO_PLAYER_DLG_h__
#define __FIFO_PLAYER_DLG_h__
#include <vector>
#include <wx/wx.h>
#include <wx/notebook.h>
@ -99,6 +100,8 @@ private:
wxListBox* m_framesList;
wxListBox* m_objectsList;
wxListBox* m_objectCmdList;
std::vector<u32> m_objectCmdOffsets;
wxStaticText* m_objectCmdInfo;
wxButton* m_Close;