Skip to content

Commit ae8b5bd

Browse files
Fix printing of remaining logo
1 parent 3d8a071 commit ae8b5bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/logo/logo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ void ffLogoPrintLine(FFinstance* instance)
347347

348348
void ffLogoPrintRemaining(FFinstance* instance)
349349
{
350-
while(instance->state.keysHeight < instance->state.logoHeight)
350+
while(instance->state.keysHeight <= instance->state.logoHeight)
351351
{
352352
ffLogoPrintLine(instance);
353353
putchar('\n');

0 commit comments

Comments
 (0)