Lobby Screen
All checks were successful
Deploy Docs / build-and-deploy (push) Successful in 27s

This commit is contained in:
2026-01-13 14:56:56 +01:00
parent 832a60d044
commit 261921b652
9 changed files with 232 additions and 47 deletions

View File

@@ -24,8 +24,9 @@ void game_mgmt_set_state(sys_state_t state)
sys_state_t game_mgmt_get_state(void) { return current_state; }
void game_mgmt_set_game_id(uint64_t id) {
if (current_game_id == id) return;
current_game_id = id;
LOG_INF("Game ID updated: %llu", id);
LOG_INF("Game ID updated: 0x%llx", id);
}
uint64_t game_mgmt_get_game_id(void) { return current_game_id; }