diff options
author | Ian C <ianc@noddybox.co.uk> | 2003-12-22 00:01:31 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2003-12-22 00:01:31 +0000 |
commit | a500f050272a8cca97ed0bbb7f8d7156555c61a7 (patch) | |
tree | 879d83916f2dae38e3574c4937098e40ae27bdb0 /src/config.c | |
parent | 9443eab98692b668fd35fc2a7e2cfb043953dbc7 (diff) |
Added memory menu and some devel changes
Diffstat (limited to 'src/config.c')
-rw-r--r-- | src/config.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/config.c b/src/config.c index 3fdb00a..0614c64 100644 --- a/src/config.c +++ b/src/config.c @@ -50,6 +50,7 @@ static int fullscreen=FALSE; static int memsize=16; static int frames=50; static int scale=1; +static int trace=0; static const struct { @@ -63,6 +64,7 @@ static const struct {"memsize", &memsize, TRUE}, {"frames", &frames, TRUE}, {"scale", &scale, TRUE}, + {"trace", &trace, TRUE}, {NULL, NULL, FALSE} }; @@ -151,7 +153,8 @@ int IConfig(IConfigVar v) &fullscreen, &memsize, &frames, - &scale + &scale, + &trace }; return *vars[v]; |