File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments