Files
Nintendont/common/include/NintendontVersion.h
FIX94 afcfa4b653 -added deadzones to wii vc gamepad reads and heavily changed memory to make space for that, hopefully it didnt break anything
-completely restructured how internal wii vc titles get read in, again hopefully it didnt break anything
2017-09-20 06:14:16 +02:00

18 lines
516 B
C

#ifndef __NINTENDONT_VERSION_H__
#define __NINTENDONT_VERSION_H__
#define NIN_MAJOR_VERSION 5
#define NIN_MINOR_VERSION 458
#define NIN_VERSION ((NIN_MAJOR_VERSION << 16) | NIN_MINOR_VERSION)
#define STRINGIZE2(s) #s
#define STRINGIZE(s) STRINGIZE2(s)
#define NIN_VERSION_STRING "$$Version:" STRINGIZE(NIN_MAJOR_VERSION) "." STRINGIZE(NIN_MINOR_VERSION)
// "Special" version.
// This should only be set in custom builds, i.e. not mainline.
// #define NIN_SPECIAL_VERSION "-Datel"
#endif