Decorations + general language string macro

This commit is contained in:
Eduardo Quezada
2024-06-24 09:48:12 -04:00
parent 8d2643cc6c
commit 72b8c2f60b
3 changed files with 3908 additions and 984 deletions

View File

@@ -139,6 +139,14 @@
// It looks like file.c:line: size of array `id' is negative
#define STATIC_ASSERT(expr, id) typedef char id[(expr) ? 1 : -1];
#if ENGLISH
#define LANGUAGE_STRING(_english, _french, _italian) _(_english)
#elif FRENCH
#define LANGUAGE_STRING(_english, _french, _italian) _(_french)
#elif ITALIAN
#define LANGUAGE_STRING(_english, _french, _italian) _(_italian)
#endif
struct Coords8
{
s8 x;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff