Add support for a 75hz simulation target (#517)

Entirely untested, I just wanted to avoid having it sit as an issue forever and as such just quickly added it with the github editor. Someone actually check it please. 😅
This commit is contained in:
moonheart08 2020-08-06 04:21:26 -05:00 committed by GitHub
parent f79578a993
commit c0b905b74a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ export const allApplicationSettings = [
}),
new EnumSetting("refreshRate", {
options: ["60", "100", "120", "144", "165", "250", G_IS_DEV ? "10" : "500"],
options: ["60", "75", "100", "120", "144", "165", "250", G_IS_DEV ? "10" : "500"],
valueGetter: rate => rate,
textGetter: rate => rate + " Hz",
category: enumCategories.advanced,