fix warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11056 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
25ffd2e146
commit
9f960e405f
2 changed files with 5 additions and 1 deletions
|
@ -28,7 +28,7 @@ int SPNM(halfframe)(int firsttick, int numlines)
|
|||
{
|
||||
|
||||
int tc, linesleft;
|
||||
int feport, scline, border;
|
||||
int feport, scline, border = 0;
|
||||
byte *scrptr;
|
||||
qbyte cmark = 0;
|
||||
|
||||
|
|
|
@ -74,7 +74,11 @@ byte *update_screen_line(byte *scrp, int coli, int scri, int border,
|
|||
qbyte *cmarkp)
|
||||
{
|
||||
qbyte *scrptr;
|
||||
#if LCD_WIDTH == 320 && ( LCD_HEIGHT == 240 || LCD_HEIGHT == 200 )
|
||||
qbyte brd_color;
|
||||
#else
|
||||
(void) border;
|
||||
#endif
|
||||
int i;
|
||||
qbyte *tmptr, *mptr;
|
||||
qbyte mark, cmark;
|
||||
|
|
Loading…
Reference in a new issue