Skip to content

Commit

Permalink
4.0.0.4 Fixed YM2414 LR channel operation.
Browse files Browse the repository at this point in the history
  • Loading branch information
110-kenichi committed Nov 18, 2021
1 parent 60488ad commit 99595fa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
@@ -1,4 +1,4 @@
MAmidiMEmo 4.0.0.3 Itoken (c)2019, 2020, 2021 / GPL-2.0
MAmidiMEmo 4.0.0.4 Itoken (c)2019, 2020, 2021 / GPL-2.0

*** What is the MAmidiMEmo? ***

Expand Down Expand Up @@ -268,6 +268,7 @@ e.g.) YM2151 has 8ch FM sounds, so you can play 8 chords on MIDI 1ch or sharing

*** Changes ***

4.0.0.4 Fixed YM2414 LR channel operation.
4.0.0.3 Fixed YM2414 LR channel operation.
Fixed YM2414 initialization and deinitialization.
4.0.0.2 Fixed YM2414 Editor. MML Serialize data does not show correct values.
Expand Down
2 changes: 1 addition & 1 deletion src/mamidimemo/Program.cs
Expand Up @@ -34,7 +34,7 @@ public static class Program
/// <summary>
///
/// </summary>
public const string FILE_VERSION = "4.0.0.3";
public const string FILE_VERSION = "4.0.0.4";

public const string FILE_COPYRIGHT = @"Virtual chiptune sound MIDI module ""MAmidiMEmo"" Version {0}
Copyright(C) 2019, 2021 Itoken.All rights reserved.";
Expand Down
4 changes: 2 additions & 2 deletions src/mamidimemo/instruments/Chips/YM2414.cs
Expand Up @@ -1781,9 +1781,9 @@ public override void OnPanpotUpdated()
mono = 0x1;

if (pan < 32)
pan = 0x2;
else if (pan >= 96)
pan = 0x1;
else if (pan >= 96)
pan = 0x2;
else
pan = 0x0;

Expand Down

0 comments on commit 99595fa

Please sign in to comment.