Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
56 lines (43 loc) · 1002 Bytes

File metadata and controls

56 lines (43 loc) · 1002 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef GUARD_SA2_CONFIG_H
#define GUARD_SA2_CONFIG_H
/* TODO: Move config.h into a different location? */
#define GAME_SA1 1
#define GAME_SA2 2
#define GAME_SA3 3
#define GAME_KATAM 4
#define ENGINE_1 1
#define ENGINE_2 2
#define ENGINE_3 3
#define ENGINE_4 4
#ifndef GAME
#error GAME must be defined to compile
#endif
// TODO: Do SA1 and SA2 use the same engine ver?
// TODO: Do SA3 and KATAM use the same engine ver?
#define ENGINE GAME
// TODO: Put somewhere else?
#if PLATFORM_GBA
#define USE_NEW_DMA 0
#else
#define USE_NEW_DMA 1
#endif
#ifndef TAS_TESTING
#define TAS_TESTING 0
#endif
#define TAS_INPUT_LOGGING 0
#ifndef HEADLESS
#define HEADLESS 0
#endif
#define TAS_TESTING_WIDESCREEN_HACK 1
#define RENDERER_SOFTWARE 0
#define RENDERER_OPENGL 1
#define RENDERER_COUNT 2
#ifndef RENDERER
#if PLATFORM_WIN32 && !PLATFORM_SDL
// TODO: Only win32 for now
#define RENDERER RENDERER_OPENGL
#else
#define RENDERER RENDERER_SOFTWARE
#endif
#endif
#endif // GUARD_SA2_CONFIG_H
Morty Proxy This is a proxified and sanitized view of the page, visit original site.