gp2x->common menu migration finished, gp2x now only uses input fwk
[libpicofe.git] / linux / port_config.h
1 // port specific settings
2
3 #ifndef PORT_CONFIG_H
4 #define PORT_CONFIG_H
5
6 #include "../gp2x/version.h" /* FIXME */
7
8 #define NO_SYNC
9
10 #define CASE_SENSITIVE_FS 1 // CS filesystem
11 #define DONT_OPEN_MANY_FILES 0
12 #define REDUCE_IO_CALLS 0
13
14 #define SCREEN_SIZE_FIXED 0
15 #define SCREEN_WIDTH  320
16 #define SCREEN_HEIGHT 240
17
18 // draw.c
19 #define OVERRIDE_HIGHCOL 0
20
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
28 #define SIMPLE_WRITE_SOUND      0
29 #define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
30
31 #define EL_LOGMASK (EL_ANOMALY|EL_STATUS|EL_SRAMIO|EL_EEPROM|EL_UIO|EL_IDLE)//|EL_VDPDMA|EL_HVCNT|EL_ASVDP)//|EL_SVP)
32 // EL_VDPDMA|EL_ASVDP|EL_SR) // |EL_BUSREQ|EL_Z80BNK)
33
34 //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
35 #define dprintf(x...)
36
37 // platform
38 #define PATH_SEP      "/"
39 #define PATH_SEP_C    '/'
40 #define MENU_X2       0
41
42 #endif //PORT_CONFIG_H
43