From 915533840480d6f57654d18c7acc2421d472c987 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Tue, 8 Jan 2013 18:09:22 +0900 Subject: [PATCH] Add support for int and quaternion values in saved games. --- libs/gamecode/pr_parse.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libs/gamecode/pr_parse.c b/libs/gamecode/pr_parse.c index 3ac5aafad..11214e0e0 100644 --- a/libs/gamecode/pr_parse.c +++ b/libs/gamecode/pr_parse.c @@ -99,9 +99,15 @@ PR_UglyValueString (progs_t *pr, etype_t type, pr_type_t *val) case ev_float: dsprintf (line, "%f", val->float_var); break; + case ev_integer: + dsprintf (line, "%d", val->integer_var); + break; case ev_vector: dsprintf (line, "%f %f %f", VectorExpand (val->vector_var)); break; + case ev_quat: + dsprintf (line, "%f %f %f %f", QuatExpand (val->quat_var)); + break; default: dsprintf (line, "bad type %i", type); break;