diff options
| author | Michiel Van Der Kolk <not.valid@email.address> | 2005-03-03 19:54:47 +0000 |
|---|---|---|
| committer | Michiel Van Der Kolk <not.valid@email.address> | 2005-03-03 19:54:47 +0000 |
| commit | cd040ddd7cfa2b68ee27639698e644c92f8fd5de (patch) | |
| tree | ed40d36a5d354b564e3789d10eb0f0eec25e16eb /apps/plugins/rockboy/rockboy.c | |
| parent | 3921e1aa6979163c2a07122dff49f6afef977a94 (diff) | |
| download | rockbox-cd040ddd7cfa2b68ee27639698e644c92f8fd5de.zip rockbox-cd040ddd7cfa2b68ee27639698e644c92f8fd5de.tar.gz rockbox-cd040ddd7cfa2b68ee27639698e644c92f8fd5de.tar.bz2 rockbox-cd040ddd7cfa2b68ee27639698e644c92f8fd5de.tar.xz | |
First stages of rockboy menu - press A/B mode to enter, contributed by pabs
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6120 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/rockboy/rockboy.c')
| -rw-r--r-- | apps/plugins/rockboy/rockboy.c | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/apps/plugins/rockboy/rockboy.c b/apps/plugins/rockboy/rockboy.c index ca48fc2..6c831d0 100644 --- a/apps/plugins/rockboy/rockboy.c +++ b/apps/plugins/rockboy/rockboy.c @@ -52,24 +52,6 @@ int shut,cleanshut; char *errormsg; int gnuboy_main(char *rom); -/* libc functions */ - -int isdigit(int c) { - return c>='0' && c<= '9'; -} - -int isalpha(int c) { - return (c>='a' && c<='z')||(c>='A' && c<='Z'); -} - -int isupper(int c) { - return c>='A'&&c<='Z'; -} - -int isalnum(int c) { - return isdigit(c)||isalpha(c); -} - void die(char *message, ...) { shut=1; @@ -129,8 +111,8 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) mp3_buffer_free=0; /* now go ahead and have fun! */ - rb->splash(HZ*2, true, "Rockboy v0.3"); - rb->lcd_clear_display(); + /* rb->splash(HZ*2, true, "Rockboy v0.3"); */ + /* rb->lcd_clear_display(); */ gnuboy_main(parameter); if(shut&&!cleanshut) { |