forked from Rox64/NXEngine
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.h
More file actions
32 lines (19 loc) · 683 Bytes
/
Copy pathconfig.h
File metadata and controls
32 lines (19 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef _CONFIG_H
#define _CONFIG_H
// if set graphics scaling factor is changable at runtime (otherwise it's a #define)
#define CONFIG_MUTABLE_SCALE
// SDL_ttf support. if turned off SDL_ttf will not be required but only
// bitmap fonts will be supported.
#define CONFIG_ENABLE_TTF
// include the Doukutsu data-file extractor in the build
// (it's needed only the first time the program is run).
//#define CONFIG_DATA_EXTRACTOR
// do image scaling in hardware via OpenGL
//#define CONFIG_OPENGL
// show virtual joystick
#define CONFIG_USE_VJOY
#define CONFIG_USE_TAPS
#define CONFIG_FAST_TILEGRID
#define CONFIG_BATCH_RENDERING
#define CONFIG_ORG_MUSIC_THREADED
#endif