2fb9e6d633
* Clang format joker files and def files * Fix blind usage of GBLA_UNUSED macro * Add final files for clang-format (main.c and selection_grid.h) --------- Co-authored-by: MeirGavish <meir.gavish@gmail.com>
11 lines
221 B
C
11 lines
221 B
C
#ifndef GIT_HASH
|
|
#define GIT_HASH "undef"
|
|
#endif
|
|
|
|
#ifndef GIT_DIRTY
|
|
#define GIT_DIRTY "-dirty"
|
|
#endif
|
|
|
|
__attribute__((section(".version"), used)) const char balatro_version[] =
|
|
"GBALATRO_VERSION:" GIT_HASH GIT_DIRTY;
|