Skip to content

Commit

Permalink
fix int64 log
Browse files Browse the repository at this point in the history
  • Loading branch information
walkawayy committed Aug 4, 2023
1 parent 6839e42 commit 20870a6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/game/savegame/savegame_bson.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include "util.h"

#include <assert.h>
#include <inttypes.h>
#include <stdio.h>
#include <zconf.h>
#include <zlib.h>
Expand Down Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 20870a6

Please sign in to comment.