summaryrefslogtreecommitdiff
path: root/apps/plugins/jewels.c
diff options
context:
space:
mode:
authorHristo Kovachev <bger@rockbox.org>2006-03-21 15:24:25 +0000
committerHristo Kovachev <bger@rockbox.org>2006-03-21 15:24:25 +0000
commit5a0bb990131f56bce9e7188bd1c109f7058b8df5 (patch)
treefec1d79e1db6a83c9d09aa299588e37556570971 /apps/plugins/jewels.c
parent1c1915c0d120947ca04ae76e42dc513648a7ffa4 (diff)
downloadrockbox-5a0bb990131f56bce9e7188bd1c109f7058b8df5.tar.gz
rockbox-5a0bb990131f56bce9e7188bd1c109f7058b8df5.zip
Jewels: little changes regarding trademark issues
Brickmania: change the highscore file to the more apropriate "brickmania.score" (patch #4789 by Mikael Magnusson) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9169 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/jewels.c')
-rw-r--r--apps/plugins/jewels.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/jewels.c b/apps/plugins/jewels.c
index a385466f82..adae1765e8 100644
--- a/apps/plugins/jewels.c
+++ b/apps/plugins/jewels.c
@@ -926,7 +926,7 @@ static unsigned int jewels_nextlevel(struct game_context* bj) {
926} 926}
927 927
928/***************************************************************************** 928/*****************************************************************************
929* bejeweld_recordscore() inserts a high score into the high scores list and 929* jewels_recordscore() inserts a high score into the high scores list and
930* returns the high score position. 930* returns the high score position.
931******************************************************************************/ 931******************************************************************************/
932static int jewels_recordscore(struct game_context* bj) { 932static int jewels_recordscore(struct game_context* bj) {
@@ -1048,9 +1048,9 @@ static void jewels_callback(void* param) {
1048} 1048}
1049 1049
1050/***************************************************************************** 1050/*****************************************************************************
1051* bejeweled() is the main game subroutine, it returns the final game status. 1051* jewels_main() is the main game subroutine, it returns the final game status.
1052******************************************************************************/ 1052******************************************************************************/
1053static int bejeweled(struct game_context* bj) { 1053static int jewels_main(struct game_context* bj) {
1054 int i, j; 1054 int i, j;
1055 int w, h; 1055 int w, h;
1056 int button; 1056 int button;
@@ -1432,7 +1432,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) {
1432 jewels_setcolors(); 1432 jewels_setcolors();
1433 1433
1434 while(!exit) { 1434 while(!exit) {
1435 switch(bejeweled(&bj)){ 1435 switch(jewels_main(&bj)){
1436 case BJ_LOSE: 1436 case BJ_LOSE:
1437 rb->splash(HZ*2, true, "No more moves!"); 1437 rb->splash(HZ*2, true, "No more moves!");
1438 /* fall through to BJ_END */ 1438 /* fall through to BJ_END */