From 02017ef88bbeddf1cf69147f48c386126302f8e8 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 26 Feb 2020 01:43:12 +0100 Subject: [PATCH] load/save boxes for the new features --- system.cpp | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/system.cpp b/system.cpp index 683bd6e2..4ef8896f 100644 --- a/system.cpp +++ b/system.cpp @@ -399,7 +399,7 @@ bool havesave = true; #if HDR #define MAXBOX 500 -#define POSSCORE 373 // update this when new boxes are added! +#define POSSCORE 384 // update this when new boxes are added! struct score { string ver; int box[MAXBOX]; @@ -832,6 +832,18 @@ EX void applyBoxes() { applyBox(clearing::direct); applyBoxBignum(clearing::imputed); + + applyBoxOrb(itOrbImpact); + applyBoxOrb(itOrbChaos); + applyBoxOrb(itOrbSwamp); + applyBoxI(itEclectic); + applyBoxI(itFrog); + applyBoxI(itWet); + applyBoxM(moFrog); + applyBoxM(moPhaser); + applyBoxM(moVaulter); + applyBoxM(moPike); + applyBoxM(moRusalka); if(POSSCORE != boxid) printf("ERROR: %d boxes\n", boxid); }