From 20870a62d8f9fe848fbb31dbb9f8528e56c86d91 Mon Sep 17 00:00:00 2001 From: walkawayy <81546780+walkawayy@users.noreply.github.com> Date: Fri, 4 Aug 2023 09:24:23 -0400 Subject: [PATCH] fix int64 log --- src/game/savegame/savegame_bson.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/game/savegame/savegame_bson.c b/src/game/savegame/savegame_bson.c index ddb8f8211..7b5cd86e0 100644 --- a/src/game/savegame/savegame_bson.c +++ b/src/game/savegame/savegame_bson.c @@ -20,6 +20,7 @@ #include "util.h" #include +#include #include #include #include @@ -817,7 +818,7 @@ static bool SaveGame_BSON_LoadCurrentMusic(struct json_object_s *music_obj) Music_Play(current_track); if (!Music_SeekTimestamp(current_track, timestamp)) { LOG_WARNING( - "Could not load current track %d at timestamp %d.", + "Could not load current track %d at timestamp %" PRId64 ".", current_track, timestamp); } }