We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XboxEepromEditor/XboxEepromEditor/Types/VideoSettings.cs
Lines 31 to 32 in da80db3
60Hz (0x00400000) and 50Hz (0x00800000) are not 1 << 23 and 1 << 24.
1 << 23
1 << 24
Should be
Refresh60Hz = 1 << 22, // 0x00400000 Refresh50Hz = 1 << 23, // 0x00800000
Verified by enabling 60HZ on PAL mode and confirming PAL60 was enabled in MSDash
The text was updated successfully, but these errors were encountered:
No branches or pull requests
XboxEepromEditor/XboxEepromEditor/Types/VideoSettings.cs
Lines 31 to 32 in da80db3
60Hz (0x00400000) and 50Hz (0x00800000) are not
1 << 23
and1 << 24
.Should be
Verified by enabling 60HZ on PAL mode and confirming PAL60 was enabled in MSDash
The text was updated successfully, but these errors were encountered: