summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fuller <relnev@icculus.org>2001-12-10 01:11:58 +0000
committerPatryk Obara <dreamer.tan@gmail.com>2019-08-20 02:22:37 +0200
commit7501334b9b5b3f82211ed1acff6c16bc63da1d48 (patch)
treebf52a0bea3adafa51ca852d2c5ab3a501dca0971
parentadb11a6d73fb4cc0bc9e71d64c63df205eaaed68 (diff)
Redisable intro screen.
-rw-r--r--TODO5
-rw-r--r--src/main.c5
2 files changed, 7 insertions, 3 deletions
diff --git a/TODO b/TODO
index 3d9aeec..16f1801 100644
--- a/TODO
+++ b/TODO
@@ -13,12 +13,13 @@
* GL_EXT_secondary_color
* Revisit sound code. (Try AL_PITCH support, etc)
* Try to get demos and regular edition to work.
+* Possible Idea: implement demos? (the kind you watch)
* See what FOX/Rebellion has to say (if anything) about redistribution of the
demos and if its possible to create an installer for regular/gold edition
CDs.
* Do something with the ingame movies. Might just leave as-is.
+* Intro screens.
* Disable Mutliplayer in the Main Menu.
-* Possible Idea: implement demos?
* See if the build process can be made easier for those who download the
source.
* Write documentation.
@@ -36,3 +37,5 @@
inline.h
* Remove unused files.
* Squelch any unnecessary debug output
+* Common\\foxlogo.RIM, Common\\logo.RIM: do these exist in the Alien Demo
+ and Regular Ed.?
diff --git a/src/main.c b/src/main.c
index 5c29d44..bda9492 100644
--- a/src/main.c
+++ b/src/main.c
@@ -811,7 +811,8 @@ static void handle_keypress(int key, int unicode, int press)
DebouncedGotAnyKey = 1;
}
- GotAnyKey = 1;
+ if (press)
+ GotAnyKey = 1;
KeyboardInput[key] = press;
}
@@ -1037,7 +1038,7 @@ int main(int argc, char *argv[])
SetFastRandom();
- WeWantAnIntro();
+ /* WeWantAnIntro(); */
GetPathFromRegistry();
#if MARINE_DEMO