mirror of
https://github.com/project-slippi/Nintendont.git
synced 2025-10-06 00:22:40 +02:00
-completely restructured how internal wii vc titles get read in, again hopefully it didnt break anything
18 lines
516 B
C
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
|