mirror of
https://github.com/dborth/fceugx.git
synced 2024-11-01 06:55:05 +01:00
update makefile
This commit is contained in:
parent
844662ca7c
commit
ab3f20ab07
@ -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
|
||||
|
@ -16,7 +16,7 @@
|
||||
|
||||
#define SAVEBUFFERSIZE (512 * 1024)
|
||||
#define MAXJOLIET 255
|
||||
#define MAXDISPLAY 54
|
||||
#define MAXDISPLAY 50
|
||||
|
||||
typedef struct
|
||||
{
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user