Starting work on FrameDebugger. First shot with frame loading and basic state viewing.

git-svn-id: http://svn.purei.org/purei/trunk@1124 b36208d7-6611-0410-8bec-b1987f11c4a2
This commit is contained in:
jpd002 2013-05-09 04:16:47 +00:00
parent 4e4bff599e
commit 1bda23de30
16 changed files with 1073 additions and 13 deletions

View file

@ -0,0 +1,21 @@
#include "GsInputStateView.h"
#include "GsStateUtils.h"
CGsInputStateView::CGsInputStateView(HWND parent, const RECT& rect)
: CRegViewPage(parent, rect)
{
}
CGsInputStateView::~CGsInputStateView()
{
}
void CGsInputStateView::UpdateState(CGSHandler* gs)
{
std::string result;
result += CGsStateUtils::GetInputState(gs);
SetDisplayText(result.c_str());
CRegViewPage::Update();
}