diff options
| author | Dragorn421 <Dragorn421@users.noreply.github.com> | 2024-08-17 22:42:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-17 22:42:09 +0200 |
| commit | 56ca23663a890af509ef665ee4674a742f8e9a22 (patch) | |
| tree | 97675bdbee78cd7c30222164ed7c4b340a2d4cbf /src/code/game.c | |
| parent | b82f54bb957ffdeda4105fe0b81e3923e107b291 (diff) | |
Fixup printf args fake matches (#2049)
Diffstat (limited to 'src/code/game.c')
| -rw-r--r-- | src/code/game.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/game.c b/src/code/game.c index ec67cde03..7a247dafe 100644 --- a/src/code/game.c +++ b/src/code/game.c @@ -341,7 +341,7 @@ void GameState_Update(GameState* gameState) { void GameState_InitArena(GameState* gameState, size_t size) { void* arena; - PRINTF("ハイラル確保 サイズ=%u バイト\n"); // "Hyrule reserved size = %u bytes" + PRINTF("ハイラル確保 サイズ=%u バイト\n", size); // "Hyrule reserved size = %u bytes" arena = GAME_ALLOC_MALLOC(&gameState->alloc, size, "../game.c", 992); if (arena != NULL) { |
