Skip to content

Commit

Permalink
fix load game screen (fixes #54)
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Mar 8, 2021
1 parent 77e547e commit 5bf3db2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/game/option.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ static REQUEST_INFO NewGameRequester = {
200, // y
0, // z
"Select Mode", // item_heading
NewGameStrings, // item_texts
(char *)NewGameStrings, // item_texts
20, // item_text_len
};
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/game/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ typedef struct {
/* 0010 */ int16_t y;
/* 0012 */ int16_t z;
/* 0014 */ char *item_heading;
/* 0018 */ char **item_texts;
/* 0018 */ char *item_texts;
/* 001C */ int16_t item_text_len;
/* 001E */ TEXTSTRING *heading;
/* 0022 */ TEXTSTRING *background;
Expand Down

0 comments on commit 5bf3db2

Please sign in to comment.