Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/fceux.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjbudd77 <mjbudd77@gmail.com>2022-01-16 18:02:00 +0300
committermjbudd77 <mjbudd77@gmail.com>2022-01-16 18:02:00 +0300
commit47098b2b8c67f249bbdca25e1f53e9d5889e975f (patch)
tree9a5c1a85928294863c1564360bcd8d27ab6a9af9 /src/version.h
parent2a1c52923118baa924a108f50da1aaf653dbcc1a (diff)
Bump patch version number for upcoming maintainence release.
Diffstat (limited to 'src/version.h')
-rw-r--r--src/version.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/version.h b/src/version.h
index 446f1c80..935835b9 100644
--- a/src/version.h
+++ b/src/version.h
@@ -62,14 +62,14 @@
#define FCEU_VERSION_MAJOR 2
#define FCEU_VERSION_MINOR 6
-#define FCEU_VERSION_PATCH 0
+#define FCEU_VERSION_PATCH 1
#define FCEU_VERSION_NUMERIC ( (FCEU_VERSION_MAJOR*10000) + (FCEU_VERSION_MINOR*100) + (FCEU_VERSION_PATCH) )
#define FCEU_VERSION_MAJOR_DECODE(x) ( (x / 10000) )
#define FCEU_VERSION_MINOR_DECODE(x) ( (x / 100) % 100 )
#define FCEU_VERSION_PATCH_DECODE(x) (x % 100)
-#define FCEU_VERSION_STRING "2.6.0" FCEU_SUBVERSION_STRING FCEU_FEATURE_STRING FCEU_COMPILER
+#define FCEU_VERSION_STRING "2.6.1" FCEU_SUBVERSION_STRING FCEU_FEATURE_STRING FCEU_COMPILER
#define FCEU_NAME_AND_VERSION FCEU_NAME " " FCEU_VERSION_STRING
#endif