diff options
author | Simon Howard | 2013-09-27 21:53:06 +0000 |
---|---|---|
committer | Simon Howard | 2013-09-27 21:53:06 +0000 |
commit | 3ab0057eae1f361eb3e930d5ba062d410abc53bd (patch) | |
tree | 0c4a23fe4a4359dc8ea898f0b3bd219290a6547e /src/heretic | |
parent | c4873e6cfc5d8af776c109a79729065400e99e3d (diff) | |
download | chocolate-doom-3ab0057eae1f361eb3e930d5ba062d410abc53bd.tar.gz chocolate-doom-3ab0057eae1f361eb3e930d5ba062d410abc53bd.tar.bz2 chocolate-doom-3ab0057eae1f361eb3e930d5ba062d410abc53bd.zip |
Fix comments: HHE, not Dehacked.
Subversion-branch: /branches/v2-branch
Subversion-revision: 2687
Diffstat (limited to 'src/heretic')
-rw-r--r-- | src/heretic/p_saveg.c | 6 |
1 files 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) { |