mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 07:12:02 +00:00
Fixed typo in the error message: it's YM2612 is OPN2 which is not OPL
This commit is contained in:
parent
3e31b89929
commit
79d7067f07
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ OPNMIDIDevice::OPNMIDIDevice(const char *args)
|
||||||
int lump = Wads.CheckNumForFullName("xg.wopn");
|
int lump = Wads.CheckNumForFullName("xg.wopn");
|
||||||
if (lump < 0)
|
if (lump < 0)
|
||||||
{
|
{
|
||||||
I_Error("No OPL bank found");
|
I_Error("No OPN bank found");
|
||||||
}
|
}
|
||||||
FMemLump data = Wads.ReadLump(lump);
|
FMemLump data = Wads.ReadLump(lump);
|
||||||
opn2_openBankData(Renderer, data.GetMem(), data.GetSize());
|
opn2_openBankData(Renderer, data.GetMem(), data.GetSize());
|
||||||
|
|
Loading…
Reference in a new issue