mirror of https://github.com/n64decomp/mk64.git
17 lines
291 B
C
17 lines
291 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
/**
|
|
* @file config.h
|
|
* A catch-all file for configuring various bugfixes and other settings in MK64
|
|
*/
|
|
|
|
// Screen Size Defines
|
|
#define SCREEN_WIDTH 320
|
|
#define SCREEN_HEIGHT 240
|
|
|
|
// Border Height Define for NTSC Versions
|
|
#define BORDER_HEIGHT 1
|
|
|
|
#endif
|