Amiga: fix port_help double-prefix path

display_file -> dlb_fopen -> fopen_datafile already prepends DATAPREFIX;
wrapping PORT_HELP in fqname() too produced "NetHack:NetHack:amii.hlp".
This commit is contained in:
Ingo Paschke
2026-05-11 20:51:06 +02:00
parent 344063afb6
commit 2e61bf768f
+3 -1
View File
@@ -1966,7 +1966,9 @@ removetopl(int cnt)
void
port_help(void)
{
display_file(fqname(PORT_HELP, DATAPREFIX, 0), 1);
/* display_file -> dlb_fopen -> fopen_datafile already routes through
DATAPREFIX; pass the bare filename. */
display_file(PORT_HELP, 1);
}
#endif