Skip to content

Commit a2bcd46

Browse files
committed
pwm: Cosmetics.
1 parent 83a8770 commit a2bcd46

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

LibDmd/DmdDevice/DmdDevice.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,6 @@ public class DmdDevice : IDmdDevice
7474
// colorizers
7575
private readonly ColorizationLoader _colorizationLoader;
7676
private AbstractConverter _colorizer;
77-
// private Serum _serum;
78-
// private ColorizationPlugin _colorizationPlugin;
79-
// private VniColorizer _vniColorizer;
8077

8178
// error reporting
8279
#if !DEBUG
@@ -298,6 +295,7 @@ public void RenderGray4(DmdFrame frame)
298295
/// Gray8 frames exist because PinMAME does some clever PWM simulation on some games which ends up in 8-bit shadings.
299296
/// </remarks>
300297
/// <param name="frame">New gray8 frame</param>
298+
/// <param name="identifyFrame">Identify frame for the colorizer</param>
301299
public void RenderGray8(DmdFrame frame, DmdFrame identifyFrame)
302300
{
303301
AnalyticsSetDmd();

LibDmd/DmdDevice/IDmdDevice.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public interface IDmdDevice
1414
void LoadPalette(uint palIndex);
1515
void SetPalette(Color[] colors);
1616
void RenderRgb24(DmdFrame frame);
17-
void RenderGray8(DmdFrame frame, DmdFrame identifyFrame = null);
17+
void RenderGray8(DmdFrame frame, DmdFrame identifyFrame);
1818
void RenderGray4(DmdFrame frame);
1919
void RenderGray2(DmdFrame frame);
2020
void RenderAlphaNumeric(NumericalLayout numericalLayout, ushort[] readUInt16Array, ushort[] ushorts);

0 commit comments

Comments
 (0)