1
0
Fork 0
forked from len0rd/rockbox

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
This commit is contained in:
Michiel Van Der Kolk 2005-03-03 19:54:47 +00:00
parent 3921e1aa69
commit cd040ddd7c
5 changed files with 33 additions and 34 deletions

View file

@ -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) {