mirror of
https://github.com/spicyjpeg/573in1.git
synced 2025-02-08 23:09:32 +01:00
25 lines
513 B
C++
25 lines
513 B
C++
|
|
#pragma once
|
|
|
|
#ifndef VERSION
|
|
#define VERSION "<unknown build>"
|
|
#endif
|
|
|
|
#ifdef NDEBUG
|
|
#define VERSION_STRING VERSION
|
|
#else
|
|
#define VERSION_STRING VERSION "-debug"
|
|
#endif
|
|
|
|
#define CH_UP_ARROW "\x80"
|
|
#define CH_DOWN_ARROW "\x81"
|
|
#define CH_LEFT_ARROW "\x82"
|
|
#define CH_RIGHT_ARROW "\x83"
|
|
#define CH_LEFT_BUTTON "\x84"
|
|
#define CH_RIGHT_BUTTON "\x85"
|
|
#define CH_START_BUTTON "\x86"
|
|
#define CH_CLOSED_LOCK "\x87"
|
|
#define CH_OPEN_LOCK "\x88"
|
|
#define CH_CHIP_ICON "\x89"
|
|
#define CH_CART_ICON "\x8a"
|