This website works better with JavaScript.
Home
Explore
Help
Sign In
modal-studios
/
izanagi-2022
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Define constants
Use #define instead of const for constants.
feature/data-structs
TheoryOfNekomata
2 years ago
parent
d320b66402
commit
123ccffa2b
1 changed files
with
3 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-4
src/packages/game/IZ_common.h
+ 3
- 4
src/packages/game/IZ_common.h
View File
@@ -3,10 +3,9 @@
#include <stdint.h>
static const char* APP_NAME = "SDL2";
static const uint8_t CONTROLS = 16;
#define CONTROLS 16
#define PLAYERS 1
static const
uint8_t PLAYERS = 1
;
static const
char* APP_NAME = "SDL2"
;
#endif
Write
Preview
Loading…
Cancel
Save