summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2021-05-23 20:45:19 +0000
committerIan C <ianc@noddybox.co.uk>2021-05-23 20:45:19 +0000
commit15d2a8724930bfb3d87f20b286391d4133d42d98 (patch)
tree339a39d4c78c6ee78946bdf952a2bcd4a4ca84f0 /src/main.c
parent6c1f2fec30886e845db47c14cd284103d9f55189 (diff)
Updates for SDL2HEADmaster
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main.c b/src/main.c
index a951097..d3aa0be 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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;