Debugger: show video-scanner's h,v position (at the expense of losing 2 watches). (#666)

This commit is contained in:
tomcw
2019-09-21 16:37:45 +01:00
parent 3264fd3ee9
commit 9ee9414bb6
9 changed files with 152 additions and 3 deletions
+11
View File
@@ -105,3 +105,14 @@
extern char g_aDebuggerVirtualTextScreen[ DEBUG_VIRTUAL_TEXT_HEIGHT ][ DEBUG_VIRTUAL_TEXT_WIDTH ];
extern size_t Util_GetDebuggerText( char* &pText_ ); // Same API as Util_GetTextScreen()
class VideoScannerDisplayInfo
{
public:
VideoScannerDisplayInfo() : isDecimal(true), isHorzReal(true) {}
bool isDecimal;
bool isHorzReal;
};
extern VideoScannerDisplayInfo g_videoScannerDisplayInfo;