Skip to content

Commit d69451f

Browse files
authored
fix Apple2 missing first two chars of directory listing (#152)
1 parent 3b96057 commit d69451f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/apple2/screen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,7 @@ void screen_select_file_next(void)
579579
void screen_select_file_display_entry(unsigned char y, const char* e, unsigned entryType)
580580
{
581581
gotoxy(0,y+3);
582-
cprintf("%-40s",&e[2]); // skip the first two chars from FN (hold over from Adam)
582+
cprintf("%-40s",&e[0]);
583583
}
584584
#pragma warn (unused-param, pop)
585585

0 commit comments

Comments
 (0)