mirror of
https://git.planet-casio.com/Slyvtt/Collab_RPG.git
synced 2025-04-20 01:47:34 +02:00
28 lines
360 B
C
28 lines
360 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
|
|
#if !defined(FXCG50) && defined(COLOR2BIT)
|
|
#define GRAYMODEOK 1
|
|
#endif
|
|
|
|
#define USB_FEATURE 0
|
|
|
|
#define DEBUGMODE 1
|
|
|
|
#ifdef FXCG50
|
|
#define T_HEIGHT 16
|
|
#define T_WIDTH 16
|
|
#else
|
|
#define T_HEIGHT 8
|
|
#define T_WIDTH 8
|
|
#endif
|
|
|
|
#ifdef FXCG50
|
|
#define PXSIZE 2
|
|
#else
|
|
#define PXSIZE 1
|
|
#endif
|
|
|
|
|
|
#endif
|