Skip to content

Commit

Permalink
print fix
Browse files Browse the repository at this point in the history
  • Loading branch information
milgra committed Sep 13, 2022
1 parent 2c98b03 commit b5c087b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cortex/scene.c
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ void scene_generate_labels(
if (scene.timer >= 0)
{
char text[10];
snprintf(text, 10, "%i", scene.timer);
snprintf(text, 11, "%i", scene.timer);

scene_label(
text,
Expand Down

0 comments on commit b5c087b

Please sign in to comment.