summaryrefslogtreecommitdiff
path: root/apps/plugins/sdl/progs/quake/host_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/sdl/progs/quake/host_cmd.c')
-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