forked from 0xGlitchbyte/TinyNightmare64
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.h
39 lines (27 loc) · 756 Bytes
/
config.h
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
#ifndef UNFLEX_CONFIG_H
#define UNFLEX_CONFIG_H
#include "sausage64.h"
/*********************************
Configuration Macros
*********************************/
// TV Types
#define NTSC 0
#define PAL 1
#define MPAL 2
// TV setting
#define TV_TYPE NTSC
// Rendering resolution
#define SCREEN_WD 320
#define SCREEN_HT 240
// Array sizes
#define GLIST_LENGTH 4096
#define HEAP_LENGTH 1024
/*********************************
Globals
*********************************/
extern Gfx glist[];
extern Gfx* glistp;
extern Gfx rspinit_dl[];
extern Gfx rdpinit_dl[];
extern NUContData contdata[1];
#endif