- game_data -> gamedata

- `render_data` -> `renderdata`
This commit is contained in:
2025-02-13 22:47:00 +01:00
parent b5c531532e
commit d62213de38
5 changed files with 19 additions and 19 deletions

View File

@@ -8,8 +8,8 @@
#include "game/game.h"
#include "window/render.h"
static game_data gdat; // initialized in init(), reading beforehand is undefined behaviour
static render_data rdat; // initialized in init(), reading beforehand is undefined behaviour
static gamedata gdat; // initialized in init(), reading beforehand is undefined behaviour
static renderdata rdat; // initialized in init(), reading beforehand is undefined behaviour
// initialize the game
static void init(void) {