diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-01-08 09:58:58 +0000 |
commit | 1afa395c2fe08ed937dbb0624ade48e46be87efe (patch) | |
tree | 621bd3dcf4c1250790f6cf414645d36611684b79 /apps/plugins/sokoban.c | |
parent | fe706d2754220794d6a22370424391e146b75c95 (diff) |
The splash() function's second argument (keymask) is now removed, as it
was not used by any code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4201 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/sokoban.c')
-rw-r--r-- | apps/plugins/sokoban.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/sokoban.c b/apps/plugins/sokoban.c index 2387fa9517..47ae64c18f 100644 --- a/apps/plugins/sokoban.c +++ b/apps/plugins/sokoban.c @@ -241,7 +241,7 @@ static int get_level_count(void) char buffer[COLS + 3]; /* COLS plus CR/LF and \0 */ if ((fd = rb->open(LEVELS_FILE, O_RDONLY)) < 0) { - rb->splash(0, 0, true, "Unable to open %s", LEVELS_FILE); + rb->splash(0, true, "Unable to open %s", LEVELS_FILE); return -1; } @@ -858,7 +858,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) init_boards(); if (get_level_count() != 0) { - rb->splash(HZ*2,0,true,"Failed loading levels!"); + rb->splash(HZ*2, true, "Failed loading levels!"); return PLUGIN_OK; } |