diff options
Diffstat (limited to 'apps/plugins/lib')
| -rw-r--r-- | apps/plugins/lib/highscore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/highscore.c b/apps/plugins/lib/highscore.c index 9ada06e..1859302 100644 --- a/apps/plugins/lib/highscore.c +++ b/apps/plugins/lib/highscore.c @@ -33,7 +33,7 @@ int highscore_save(char *filename, struct highscore *scores, int num_scores) if(!highscore_updated) return 1; - fd = rb->open(filename, O_WRONLY|O_CREAT); + fd = rb->open(filename, O_WRONLY|O_CREAT, 0666); if(fd < 0) return -1; |