new 32x renderers, auto fskip change, massive refactoring
[libpicofe.git] / win32 / port_config.h
1 // port specific settings
2
3 #ifndef PORT_CONFIG_H
4 #define PORT_CONFIG_H
5
6 #define NO_SYNC
7
8 #define CASE_SENSITIVE_FS 0 // CS filesystem
9 #define DONT_OPEN_MANY_FILES 0
10 #define REDUCE_IO_CALLS 0
11
12 #define SCREEN_SIZE_FIXED 0
13 #define SCREEN_WIDTH  320
14 #define SCREEN_HEIGHT 240
15
16 // draw2.c
17 #define START_ROW  0 // which row of tiles to start rendering at?
18 #define END_ROW   28 // ..end
19
20 // pico.c
21 #define CAN_HANDLE_240_LINES    1
22
23 #define SIMPLE_WRITE_SOUND      1
24 #define mix_32_to_16l_stereo_lvl mix_32_to_16l_stereo
25
26 #define EL_LOGMASK (EL_STATUS)
27
28 //#define dprintf(f,...) printf("%05i:%03i: " f "\n",Pico.m.frame_count,Pico.m.scanline,##__VA_ARGS__)
29 #define dprintf(x...)
30
31 // platform
32 #define PATH_SEP      "\\"
33 #define PATH_SEP_C    '\\'
34 #define MENU_X2       0
35
36 #endif //PORT_CONFIG_H
37