mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-08-10 15:25:08 +00:00
Fixed #342
This commit is contained in:
@@ -1481,7 +1481,7 @@ void NTSC_SetVideoMode( int bVideoModeFlags )
|
|||||||
g_nTextPage = 1;
|
g_nTextPage = 1;
|
||||||
g_nHiresPage = 1;
|
g_nHiresPage = 1;
|
||||||
if (bVideoModeFlags & VF_PAGE2) {
|
if (bVideoModeFlags & VF_PAGE2) {
|
||||||
// Apple IIe, Techical Nodtes, #3: Double High-Resolution Graphics
|
// Apple IIe, Technical Notes, #3: Double High-Resolution Graphics
|
||||||
// 80STORE must be OFF to display page 2
|
// 80STORE must be OFF to display page 2
|
||||||
if (0 == (bVideoModeFlags & VF_80STORE)) {
|
if (0 == (bVideoModeFlags & VF_80STORE)) {
|
||||||
g_nTextPage = 2;
|
g_nTextPage = 2;
|
||||||
|
@@ -1168,9 +1168,10 @@ void VideoRefreshScreen ( int bVideoModeFlags, UINT uDelayRefresh /* =0 */ )
|
|||||||
DebugRefresh(0);
|
DebugRefresh(0);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if( bVideoModeFlags )
|
if (g_nAppMode == MODE_DEBUG || g_nAppMode == MODE_PAUSED)
|
||||||
{
|
{
|
||||||
NTSC_SetVideoMode( bVideoModeFlags );
|
if (g_nAppMode == MODE_DEBUG)
|
||||||
|
NTSC_SetVideoMode( bVideoModeFlags );
|
||||||
NTSC_VideoUpdateCycles( VIDEO_SCANNER_6502_CYCLES );
|
NTSC_VideoUpdateCycles( VIDEO_SCANNER_6502_CYCLES );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user