Be consistent
This commit is contained in:
parent
9e2cb3c191
commit
4e4c2e0198
2 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "advent.h"
|
#include "advent.h"
|
||||||
#include "dungeon.h"
|
#include "dungeon.h"
|
||||||
|
#include <inttypes.h>
|
||||||
|
|
||||||
static int fill(verb_t, obj_t);
|
static int fill(verb_t, obj_t);
|
||||||
|
|
||||||
|
|
2
advent.h
2
advent.h
|
@ -119,7 +119,7 @@ typedef long loc_t; // index into the locations array */
|
||||||
typedef long turn_t; // turn counter or threshold */
|
typedef long turn_t; // turn counter or threshold */
|
||||||
|
|
||||||
struct game_t {
|
struct game_t {
|
||||||
int64_t lcg_x;
|
int32_t lcg_x;
|
||||||
long abbnum; // How often to print long descriptions
|
long abbnum; // How often to print long descriptions
|
||||||
score_t bonus; // What kind of finishing bonus we are getting
|
score_t bonus; // What kind of finishing bonus we are getting
|
||||||
loc_t chloc; // pirate chest location
|
loc_t chloc; // pirate chest location
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue