Skip to content

Commit

Permalink
Commenting out Direct3D was unintended
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Sep 17, 2017
1 parent 4887453 commit 7bf0b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dotNES/UI.cs
Expand Up @@ -61,7 +61,7 @@ public RadioItem(string title, Action<Item> build = null) : base(title, build)
private bool suspended;
public bool gameStarted;

private Type[] possibleRenderers = { typeof(SoftwareRenderer) /*, typeof(OpenGLRenderer), typeof(Direct3DRenderer)*/ };
private Type[] possibleRenderers = { typeof(SoftwareRenderer), /* typeof(OpenGLRenderer), */ typeof(Direct3DRenderer) };
private List<IRenderer> availableRenderers = new List<IRenderer>();

public UI()
Expand Down

0 comments on commit 7bf0b44

Please sign in to comment.