Move VideoRedrawScreen() to Video. (PR #904)

This commit is contained in:
Andrea
2021-01-01 12:42:24 +00:00
committed by GitHub
parent c7d9a780bb
commit 9d7aa7d309
10 changed files with 22 additions and 24 deletions
+1 -1
View File
@@ -303,7 +303,7 @@ void KeybQueueKeypress (WPARAM key, Keystroke_e bASCII)
{
g_bTK3KModeKey = (GetKeyState(VK_SCROLL) & 1) ? true : false; // Sync with the Scroll Lock status
GetFrame().FrameRefreshStatus(DRAW_LEDS); // TODO: Implement |Mode| LED in the UI; make it appear only when in TK3000 mode
GetFrame().VideoRedrawScreen(); // TODO: Still need to implement page mode switching and 'whatnot'
GetVideo().VideoRedrawScreen(); // TODO: Still need to implement page mode switching and 'whatnot'
}
return;
}