1
0
Fork 0
forked from len0rd/rockbox

Save the scratchpad state in Sudoku plugin (FS#5737).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26622 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-06-06 10:59:29 +00:00
parent b2302e4e9b
commit 3ee3b28f8a
2 changed files with 38 additions and 9 deletions

View file

@ -330,6 +330,7 @@ struct sudoku_state_t {
int editmode; /* We are editing the start board */
#ifdef SUDOKU_BUTTON_POSSIBLE
short possiblevals[9][9]; /* possible values a cell could be, user sets them */
short savedpossible[9][9]; /* cached copy of possible cell values */
#endif
};