mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-17 16:39:42 +01:00
52124f7010
I'm fine with putting the release version in a header file, thus necessitating the need to recompile every file that includes it if it's changed, simply because it's not supposed to be changed that often. The SDL_arraysize is necessary because sometimes we'll have subreleases (e.g. 2.4.1, 2.4.2, 2.4.3), and who knows, maybe we'll get to 2.10 someday.
6 lines
113 B
C
6 lines
113 B
C
#ifndef RELEASEVERSION_H
|
|
#define RELEASEVERSION_H
|
|
|
|
#define RELEASE_VERSION "v2.4"
|
|
|
|
#endif /* RELEASEVERSION_H */
|