key combos for new input code
[picodrive.git] / platform / linux / port_config.h
CommitLineData
cc68a136 1// port specific settings
2
3#ifndef PORT_CONFIG_H
4#define PORT_CONFIG_H
5
e096cf88 6#include "../gp2x/version.h" /* FIXME */
7
2433f409 8#define NO_SYNC
cc68a136 9
f579f7b8 10#define CASE_SENSITIVE_FS 1 // CS filesystem
11#define DONT_OPEN_MANY_FILES 0
12#define REDUCE_IO_CALLS 0
f579f7b8 13
e2de9939 14#define SCREEN_SIZE_FIXED 0
15#define SCREEN_WIDTH 320
16#define SCREEN_HEIGHT 240
17
f579f7b8 18// draw.c
19#define OVERRIDE_HIGHCOL 0
20
cc68a136 21// draw2.c
22#define START_ROW 0 // which row of tiles to start rendering at?
23#define END_ROW 28 // ..end
24
25// pico.c
26#define CAN_HANDLE_240_LINES 1
27
03a265e5 28#define SIMPLE_WRITE_SOUND 0
f53f286a 29#define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
30
c060a9ab 31#define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO|EL_IDLE)//|EL_VDPDMA|EL_HVCNT|EL_ASVDP)//|EL_SVP)
5de27868 32// EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
69996cb7 33
4f65685b 34//#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
35#define dprintf(x...)
cc68a136 36
f8af9634 37// platform
38#define PLAT_MAX_KEYS 32
39#define PLAT_HAVE_JOY 1
40#define PATH_SEP "/"
41#define PATH_SEP_C '/'
c6c6c9cd 42#define MENU_X2 0
f8af9634 43
cc68a136 44#endif //PORT_CONFIG_H
45