diff options
author | Ian C <ianc@noddybox.co.uk> | 2007-03-12 00:59:51 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2007-03-12 00:59:51 +0000 |
commit | 7e2703a49de38100f9ee82042a744517fc7eb171 (patch) | |
tree | e76beb7f038e9ef51a30b5d10f5e4be7ffd73c46 /source/zx81.c | |
parent | eeef0966f0448d71e79ad43d53769afebd47b459 (diff) |
Altered some interfaces for the monitor.
Diffstat (limited to 'source/zx81.c')
-rw-r--r-- | source/zx81.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/zx81.c b/source/zx81.c index 4d1da51..c0af981 100644 --- a/source/zx81.c +++ b/source/zx81.c @@ -303,7 +303,7 @@ static FILE *OpenTapeFile(Z80Word addr, int *cancelled) *cancelled = TRUE; } - SK_DisplayKeyboard(BG_GFX_SUB); + SK_DisplayKeyboard(); } else { @@ -773,7 +773,7 @@ static int EDCallback(Z80 *z80, Z80Val data) if (!cancel) { GUI_Alert(FALSE,"Couldn't open tape"); - SK_DisplayKeyboard(BG_GFX_SUB); + SK_DisplayKeyboard(); } } } @@ -786,7 +786,7 @@ static int EDCallback(Z80 *z80, Z80Val data) else { GUI_Alert(FALSE,"No tape image selected"); - SK_DisplayKeyboard(BG_GFX_SUB); + SK_DisplayKeyboard(); } } |