Skip to content

Commit

Permalink
Gambatte: Make initial colors grey scale
Browse files Browse the repository at this point in the history
Also make equal length frames false by default, fixes #1176
  • Loading branch information
alyosha-tas committed May 26, 2018
1 parent d6a9d69 commit b480476
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
16 changes: 8 additions & 8 deletions BizHawk.Client.EmuHawk/config/GB/ColorChooserForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -47,12 +47,21 @@ public bool PutSyncSettings(GambatteSyncSettings o)

public class GambatteSettings
{
/* Green Palette
private static readonly int[] DefaultPalette =
{
10798341, 8956165, 1922333, 337157,
10798341, 8956165, 1922333, 337157,
10798341, 8956165, 1922333, 337157
};
*/
// Grey Scale Palette
private static readonly int[] DefaultPalette =
{
0xFFFFFF, 0xAAAAAA, 0x555555, 0,
0xFFFFFF, 0xAAAAAA, 0x555555, 0,
0xFFFFFF, 0xAAAAAA, 0x555555, 0
};

public int[] GBPalette;
public GBColors.ColorType CGBColors;
Expand Down Expand Up @@ -121,7 +130,7 @@ public int RTCInitialTime

[DisplayName("Equal Length Frames")]
[Description("When false, emulation frames sync to vblank. Only useful for high level TASing.")]
[DefaultValue(true)]
[DefaultValue(false)]
public bool EqualLengthFrames
{
get { return _equalLengthFrames; }
Expand Down

0 comments on commit b480476

Please sign in to comment.