summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/progs
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2019-07-20 17:36:25 -0400
committerFranklin Wei <git@fwei.tk>2019-07-21 15:13:35 -0400
commitf83de422fa7f4d107ce69a1be66cf35afb60314f (patch)
tree9ac1e2aa9862f506ca9e00b1a2353fca08afd39e /apps/plugins/sdl/progs
parent5a84239e43d6be65e6265ef06a71a7ff66f25fd8 (diff)
downloadrockbox-f83de422fa7f4d107ce69a1be66cf35afb60314f.tar.gz
rockbox-f83de422fa7f4d107ce69a1be66cf35afb60314f.zip
quake: enable building Quake2
Change-Id: I67f8f7c6e7e337806751057d1c9ebdae16c54119
Diffstat (limited to 'apps/plugins/sdl/progs')
-rw-r--r--apps/plugins/sdl/progs/quake/host_cmd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/sdl/progs/quake/host_cmd.c b/apps/plugins/sdl/progs/quake/host_cmd.c
index 498eec0d3a..5e3ad397aa 100644
--- a/apps/plugins/sdl/progs/quake/host_cmd.c
+++ b/apps/plugins/sdl/progs/quake/host_cmd.c
@@ -734,8 +734,8 @@ void SaveGamestate()
734 fprintf (f, "%i\n", SAVEGAME_VERSION); 734 fprintf (f, "%i\n", SAVEGAME_VERSION);
735 Host_SavegameComment (comment); 735 Host_SavegameComment (comment);
736 fprintf (f, "%s\n", comment); 736 fprintf (f, "%s\n", comment);
737// for (i=0 ; i<NUM_SPAWN_PARMS ; i++) 737 for (i=0 ; i<NUM_SPAWN_PARMS ; i++)
738// fprintf (f, "%f\n", svs.clients->spawn_parms[i]); 738 fprintf (f, "%f\n", svs.clients->spawn_parms[i]);
739 fprintf (f, "%f\n", skill.value); 739 fprintf (f, "%f\n", skill.value);
740 fprintf (f, "%s\n", sv.name); 740 fprintf (f, "%s\n", sv.name);
741 fprintf (f, "%f\n", sv.time); 741 fprintf (f, "%f\n", sv.time);
@@ -775,7 +775,7 @@ int LoadGamestate(char *level, char *startspot)
775 edict_t *ent; 775 edict_t *ent;
776 int entnum; 776 int entnum;
777 int version; 777 int version;
778// float spawn_parms[NUM_SPAWN_PARMS]; 778 float spawn_parms[NUM_SPAWN_PARMS];
779 779
780 sprintf (name, "%s/%s.gip", com_gamedir, level); 780 sprintf (name, "%s/%s.gip", com_gamedir, level);
781 781