commit 3ab0057eae1f361eb3e930d5ba062d410abc53bd
Author: Simon Howard <fraggle@gmail.com>
AuthorDate: Fri Sep 27 21:53:06 2013 +0000
Commit: Simon Howard <fraggle@gmail.com>
CommitDate: Fri Sep 27 21:53:06 2013 +0000
Fix comments: HHE, not Dehacked.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2687
---
src/heretic/p_saveg.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/heretic/p_saveg.c b/src/heretic/p_saveg.c
index 304ffad8..195f36a4 100644
--- a/src/heretic/p_saveg.c
+++ b/src/heretic/p_saveg.c
@@ -278,8 +278,8 @@ static void saveg_read_state_ptr(state_t **state)
statenum = SV_ReadLong();
// We have read a state number, but it is indexed according to the state
- // table in Vanilla Heretic v1.3. To support v1.0 Dehacked patches we
- // have three extra states, so map the state number to our internal state
+ // table in Vanilla Heretic v1.3. To support v1.0 HHE patches we have
+ // three extra states, so map the state number to our internal state
// number.
if (statenum >= S_PHOENIXFXIX_1)
@@ -847,7 +847,7 @@ static void saveg_read_mobj_t(mobj_t *str)
// mobjtype_t type;
str->type = SV_ReadLong();
- // An extra thing type was added for v1.0 dehacked compatibility.
+ // An extra thing type was added for v1.0 HHE compatibility.
// Map from the v1.3 thing type index to the internal one.
if (str->type >= MT_PHOENIXFX_REMOVED)
{