Skip to content

Commit

Permalink
fix AGB selection in sameboy
Browse files Browse the repository at this point in the history
  • Loading branch information
CasualPokePlayer committed May 8, 2022
1 parent afc4424 commit a949178
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public class SameboySyncSettings
[DefaultValue(false)]
public bool EnableBIOS { get; set; }

public enum GBModel : short
public enum GBModel : int
{
Auto = -1,
// GB_MODEL_DMG_0 = 0x000,
Expand All @@ -175,8 +175,11 @@ public enum GBModel : short
GB_MODEL_CGB_D = 0x204,
[Display(Name = "CGB-E")]
GB_MODEL_CGB_E = 0x205,
// GB_MODEL_AGB_0 = 0x206,
// GB_MODEL_AGB_A = 0x207,
[Display(Name = "AGB")]
GB_MODEL_AGB = 0x206,
GB_MODEL_AGB = 0x207,
// GB_MODEL_AGB_B = 0x208,
}

[DisplayName("Console Mode")]
Expand Down

0 comments on commit a949178

Please sign in to comment.