From ff5abe4b6c3e5569216becbb71851f3ff8c1d207 Mon Sep 17 00:00:00 2001 From: jl777 Date: Mon, 25 Mar 2019 06:32:53 -1100 Subject: [PATCH] Gamespack --- src/cc/gamescc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cc/gamescc.h b/src/cc/gamescc.h index 2d3f56a48..51432105c 100644 --- a/src/cc/gamescc.h +++ b/src/cc/gamescc.h @@ -13,7 +13,7 @@ std::string MYCCLIBNAME = (char *)"gamescc"; #define GAMES_TXFEE 10000 #define GAMES_MAXITERATIONS 777 #define GAMES_MAXKEYSTROKESGAP 60 -#define GAMES_MAYPLAYERS 64 +#define GAMES_MAXPLAYERS 64 #define GAMES_REGISTRATIONSIZE (100 * 10000) #define GAMES_RNGMULT 11109 @@ -90,7 +90,7 @@ struct games_packitem struct games_player { int32_t gold,hitpoints,strength,level,experience,packsize,dungeonlevel,amulet; - struct games_packitem roguepack[MAXPACK]; + struct games_packitem gamespack[MAXPACK]; }; int32_t games_replay2(uint8_t *newdata,uint64_t seed,char *keystrokes,int32_t num,struct rogue_player *player,int32_t sleepmillis);