Skip to content

Commit

Permalink
Revise the patch messages when updating ocp.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
mywave82 committed Dec 31, 2024
1 parent d8b3032 commit 2554ceb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions boot/pmain.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,13 +1012,13 @@ static int init_modules(int argc, char *argv[])

if (epoch < 20240510)
{
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] mirror=https://ftp.modland.com\n");
fprintf (stderr, "ocp.ini update (3.0.0) add [modland.com] mirror=https://ftp.modland.com\n");
#ifdef _WIN32
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] cachedir=$OCPDATAHOME\\modland.com\\\n");
fprintf (stderr, "ocp.ini update (3.0.0) add [modland.com] cachedir=$OCPDATAHOME\\modland.com\\\n");
#else
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] cachedir=$OCPDATAHOME/modland.com/\n");
fprintf (stderr, "ocp.ini update (3.0.0) add [modland.com] cachedir=$OCPDATAHOME/modland.com/\n");
#endif
fprintf (stderr, "ocp.ini update (0.2.110) add [modland.com] showrelevantdirectoriesonly=1\n");
fprintf (stderr, "ocp.ini update (3.0.0) add [modland.com] showrelevantdirectoriesonly=1\n");

cfSetProfileString ("modland.com", "mirror", "https://ftp.modland.com");
#ifdef _WIN32
Expand All @@ -1031,9 +1031,9 @@ static int init_modules(int argc, char *argv[])

if (epoch < 20240510)
{
fprintf(stderr, "ocp.ini update (0.2.107) add [libsidplayfp] filterrange6581=0.5\n");
fprintf(stderr, "ocp.ini update (0.2.107, revised in 3.0.0) add [libsidplayfp] filterrange6581=0.5\n");
cfSetProfileString ("libsidplayfp", "filterrange6581", "0.5");
fprintf(stderr, "ocp.ini update (0.2.107) add [libsidplayfp] combinedwaveforms=Strong\n");
fprintf(stderr, "ocp.ini update (0.2.107, revised in 3.0.0) add [libsidplayfp] combinedwaveforms=Strong\n");
cfSetProfileString ("libsidplayfp", "combinedwaveforms", "Strong");
}

Expand Down

0 comments on commit 2554ceb

Please sign in to comment.