mirror of
https://github.com/dborth/fceugx.git
synced 2025-01-07 14:28:18 +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 \
|
SOURCES := source/fceultra source/fceultra/boards \
|
||||||
source/fceultra/drivers/common source/fceultra/input \
|
source/fceultra/drivers/common source/fceultra/input \
|
||||||
source/fceultra/mappers source/fceultra/mbshare \
|
source/fceultra/mappers source/fceultra/mbshare \
|
||||||
source/ngc
|
source/ngc source/sz
|
||||||
DATA := data
|
DATA := data
|
||||||
INCLUDES := source/fceultra source/ngc
|
INCLUDES := source/fceultra source/ngc
|
||||||
LANG := ENGLISH # Supported languages: ENGLISH
|
LANG := ENGLISH # Supported languages: ENGLISH
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
|
|
||||||
#define SAVEBUFFERSIZE (512 * 1024)
|
#define SAVEBUFFERSIZE (512 * 1024)
|
||||||
#define MAXJOLIET 255
|
#define MAXJOLIET 255
|
||||||
#define MAXDISPLAY 54
|
#define MAXDISPLAY 50
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
@ -439,7 +439,7 @@ DrawMenu (char items[][50], char *title, int maxitems, int selected, int fontsiz
|
|||||||
else if (i == selected)
|
else if (i == selected)
|
||||||
{
|
{
|
||||||
for( w = 0; w < line_height; w++ )
|
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);
|
setfontcolour (0xff, 0xff, 0xff);
|
||||||
DrawText (x, n * line_height + ypos, items[i]);
|
DrawText (x, n * line_height + ypos, items[i]);
|
||||||
@ -605,7 +605,7 @@ ShowFiles (FILEENTRIES filelist[], int maxfiles, int offset, int selection)
|
|||||||
{
|
{
|
||||||
/*** Highlighted text entry ***/
|
/*** Highlighted text entry ***/
|
||||||
for ( w = 0; w < 20; w++ )
|
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);
|
setfontcolour (0xFF, 0xFF, 0xFF);
|
||||||
DrawText (50, (j * 20) + ypos, text);
|
DrawText (50, (j * 20) + ypos, text);
|
||||||
|
Loading…
Reference in New Issue
Block a user