Skip to content

Commit

Permalink
[Core] Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
aoineko-fr committed Aug 23, 2023
1 parent 15ecb83 commit 8f191e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// Library version
#define VERSION_MAJOR (u16)0 // 4-bits (0-15)
#define VERSION_MINOR (u16)9 // 6-bits (0-63)
#define VERSION_PATCH (u16)9 // 6-bits (0-63)
#define VERSION_PATCH (u16)10 // 6-bits (0-63)
#define VERSION(a, b, c) ((((a) & 0x0F) << 12) | (((b) & 0x3F) << 6) | ((c) & 0x3F))
#define VERSION_CURRENT VERSION(VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH)

Expand Down

0 comments on commit 8f191e4

Please sign in to comment.