update makefile

This commit is contained in:
dborth 2008-10-13 21:59:05 +00:00
parent 844662ca7c
commit ab3f20ab07
3 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ BUILD := build_gc
SOURCES := source/fceultra source/fceultra/boards \
source/fceultra/drivers/common source/fceultra/input \
source/fceultra/mappers source/fceultra/mbshare \
source/ngc
source/ngc source/sz
DATA := data
INCLUDES := source/fceultra source/ngc
LANG := ENGLISH # Supported languages: ENGLISH

View File

@ -16,7 +16,7 @@
#define SAVEBUFFERSIZE (512 * 1024)
#define MAXJOLIET 255
#define MAXDISPLAY 54
#define MAXDISPLAY 50
typedef struct
{

View File

@ -439,7 +439,7 @@ DrawMenu (char items[][50], char *title, int maxitems, int selected, int fontsiz
else if (i == selected)
{
for( w = 0; w < line_height; w++ )
DrawLineFast( 30, 610, n * line_height + (ypos-line_height+6) + w, 0x60, 0x60, 0x60 );
DrawLineFast( 30, 610, n * line_height + (ypos-line_height+6) + w, 0xBB, 0xBB, 0xBB );
setfontcolour (0xff, 0xff, 0xff);
DrawText (x, n * line_height + ypos, items[i]);
@ -605,7 +605,7 @@ ShowFiles (FILEENTRIES filelist[], int maxfiles, int offset, int selection)
{
/*** Highlighted text entry ***/
for ( w = 0; w < 20; w++ )
DrawLineFast( 30, 610, ( j * 20 ) + (ypos-16) + w, 0x60, 0x60, 0x60 );
DrawLineFast( 30, 610, ( j * 20 ) + (ypos-16) + w, 0xCC, 0xCC, 0xCC );
setfontcolour (0xFF, 0xFF, 0xFF);
DrawText (50, (j * 20) + ypos, text);