1
0
Fork 0
forked from len0rd/rockbox

I bet nobody enters more than 100 letters in search strings, and since there

are 70 of these, we gain 10K in one single step.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6902 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-06-27 22:43:11 +00:00
parent a24017f4da
commit c9cb607a19
2 changed files with 4 additions and 2 deletions

View file

@ -98,7 +98,7 @@ void buildtoken(int tokentype,struct token *token) {
case TOKEN_STRING:
do {
rb->splash(HZ*2,true,"Enter String.");
} while(rb->kbd_input(token->spelling, 254));
} while(rb->kbd_input(token->spelling, SPELLING_LENGTH));
break;
case TOKEN_YEAR:
token->kind=TOKEN_NUMIDENTIFIER;

View file

@ -84,9 +84,11 @@
#define INTVALUE_GENRE 17
#define INTVALUE_FILENAME 18
#define SPELLING_LENGTH 100
struct token {
char kind;
char spelling[255];
char spelling[SPELLING_LENGTH + 1];
long intvalue;
};
char *tokentypetostring(int tokentype);