Move new CON_FOR iterators to the bottom of their enum to unbreak savegames using CON_FOR made before r6635.

git-svn-id: https://svn.eduke32.com/eduke32@6646 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2018-02-11 05:03:59 +00:00
parent d68c9b45c6
commit 9cf6c85623

View file

@ -781,8 +781,6 @@ enum ProjectileLabel_t
enum IterationTypes_t enum IterationTypes_t
{ {
ITER_ALLSPRITES, ITER_ALLSPRITES,
ITER_ALLSPRITESBYSTAT,
ITER_ALLSPRITESBYSECT,
ITER_ALLSECTORS, ITER_ALLSECTORS,
ITER_ALLWALLS, ITER_ALLWALLS,
ITER_ACTIVELIGHTS, ITER_ACTIVELIGHTS,
@ -793,6 +791,8 @@ enum IterationTypes_t
ITER_WALLSOFSECTOR, ITER_WALLSOFSECTOR,
ITER_LOOPOFWALL, ITER_LOOPOFWALL,
ITER_RANGE, ITER_RANGE,
ITER_ALLSPRITESBYSTAT,
ITER_ALLSPRITESBYSECT,
ITER_END ITER_END
}; };