diff options
author | Ian C <ianc@noddybox.co.uk> | 2021-05-23 20:45:19 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2021-05-23 20:45:19 +0000 |
commit | 15d2a8724930bfb3d87f20b286391d4133d42d98 (patch) | |
tree | 339a39d4c78c6ee78946bdf952a2bcd4a4ca84f0 /src/main.c | |
parent | 6c1f2fec30886e845db47c14cd284103d9f55189 (diff) |
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 10 |
1 files changed, 0 insertions, 10 deletions
@@ -21,8 +21,6 @@ ------------------------------------------------------------------------- */ -static const char id[]="$Id$"; - #include <stdlib.h> #include <stdio.h> #include <string.h> @@ -247,8 +245,6 @@ int main(int argc, char *argv[]) case SDLK_F8: if (e->key.state==SDL_PRESSED) { - GFXKeyRepeat(TRUE); - if (GUIFileSelect("TAPE TO LOAD",TRUE, tape_in[0] ? Dirname(tape_in) : @@ -257,16 +253,12 @@ int main(int argc, char *argv[]) { SPECMount(SPEC_TAPE_IN,tape_in); } - - GFXKeyRepeat(FALSE); } break; case SDLK_F9: if (e->key.state==SDL_PRESSED) { - GFXKeyRepeat(TRUE); - if (GUIFileSelect("TAPE TO SAVE",FALSE, tape_out[0] ? Dirname(tape_out) : @@ -275,8 +267,6 @@ int main(int argc, char *argv[]) { SPECMount(SPEC_TAPE_OUT,tape_out); } - - GFXKeyRepeat(FALSE); } break; |