Skip to content

Commit

Permalink
Merged revision(s) 22401 from branches/OpenMPT-1.29:
Browse files Browse the repository at this point in the history
[Fix] Fix compilation.
........


git-svn-id: https://source.openmpt.org/svn/openmpt/branches/OpenMPT-1.28@22402 56274372-70c3-4bfc-bfc3-4c3a0b034d27
  • Loading branch information
sagamusix committed Dec 1, 2024
1 parent 121f6e5 commit c5456b8
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions soundlib/Load_mod.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1248,13 +1248,7 @@ bool CSoundFile::ReadMOD(FileReader &file, ModLoadingFlags loadFlags)
if(++emptySampleReferences > 1)
{
#ifdef MPT_EXTERNAL_SAMPLES
mpt::ustring filenameHint;
if(!file.GetFileName().empty())
{
const auto filename = file.GetFileName().GetFilename().ToUnicode();
filenameHint = mpt::format(U_(" ({}.nt or {}.as)"))(filename, filename);
}
AddToLog(LogWarning, mpt::format(U_("This Startrekker AM file is most likely missing its companion file{}. Synthesized instruments will not play."))(filenameHint));
AddToLog(LogWarning, U_("This Startrekker AM file is most likely missing its companion file. Synthesized instruments will not play."));
#else
AddToLog(LogWarning, U_("This appears to be a Startrekker AM file with external synthesizes instruments. External instruments are currently not supported."));
#endif // MPT_EXTERNAL_SAMPLES
Expand Down

0 comments on commit c5456b8

Please sign in to comment.