Skip to content

Commit

Permalink
Bug fix; save did not save settings
Browse files Browse the repository at this point in the history
  • Loading branch information
doubt72 committed Apr 2, 2013
1 parent fedcc91 commit 6631ac3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -5,7 +5,7 @@

Sokudoku is a program for practicing reading random characters.
Although probably best for syllable-based character sets like Japanese
Katakana or Hiragana, or Korean Hangul (for which it is primarily
Katakana or Hiragana or Korean Hangul (for which it is primarily
intended), it more or less works fine with "regular" phonetic
character sets as well (or something like Korean Jomo), taking into
account the fact that it more or less produces strings of random
Expand Down Expand Up @@ -73,7 +73,7 @@ anytime soon, but for the curious there are obviously several examples
in the repository of both programs that will generate packages and
packages themselves -- if you build a new package that contains any
errors, the program should supply somewhat meaningful error messages
when you attempt to load it that should help you fix it.
when you attempt to load it (which should help you fix it).

Once packages are loaded, the application handles storing the package
and history internally in the user's account.
Expand Down
2 changes: 2 additions & 0 deletions Sokudoku/Models/Package.m
Expand Up @@ -205,6 +205,8 @@ - (void)saveSettings {
}

- (void)save {
[self saveSettings];

NSMutableArray *characterArray = [NSMutableArray arrayWithCapacity:[characters count]];
for (int i = 0; i < [characters count]; i++) {
[characterArray addObject:[[characters objectAtIndex:i] toDictionary]];
Expand Down

0 comments on commit 6631ac3

Please sign in to comment.