mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
giz port, restructuring
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@257 be3aeb3a-fb24-0410-a615-afba39da0efa
This commit is contained in:
parent
c9077ab4b9
commit
ea8c405fa7
30 changed files with 1706 additions and 970 deletions
|
@ -14,16 +14,18 @@
|
|||
#include "lprintf.h"
|
||||
|
||||
#if defined(__GP2X__)
|
||||
#include "../gp2x/gp2x.h"
|
||||
#define SCREEN_WIDTH 320
|
||||
#define SCREEN_BUFFER gp2x_screen
|
||||
#include "../gp2x/gp2x.h"
|
||||
#define SCREEN_WIDTH 320
|
||||
#define SCREEN_BUFFER gp2x_screen
|
||||
#elif defined(__GIZ__)
|
||||
#include "../gizmondo/giz.h"
|
||||
#define SCREEN_WIDTH 321
|
||||
#define SCREEN_BUFFER menu_screen
|
||||
extern unsigned char menu_screen[321*240*2];
|
||||
//#include "../gizmondo/giz.h"
|
||||
#define SCREEN_WIDTH 321
|
||||
#define SCREEN_BUFFER menu_screen
|
||||
extern unsigned char *menu_screen;
|
||||
#endif
|
||||
|
||||
char menuErrorMsg[64] = { 0, };
|
||||
|
||||
static unsigned char menu_font_data[10240];
|
||||
static int menu_text_color = 0xffff; // default to white
|
||||
static int menu_sel_color = -1; // disabled
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue