Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/apple2/screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ void screen_select_file_next(void)
void screen_select_file_display_entry(unsigned char y, const char* e, unsigned entryType)
{
gotoxy(0,y+3);
cprintf("%-40s",&e[2]); // skip the first two chars from FN (hold over from Adam)
cprintf("%-40s",&e[0]);
}
#pragma warn (unused-param, pop)

Expand Down