From c0b905b74a4269599ac55afbaa117e217a71e811 Mon Sep 17 00:00:00 2001 From: moonheart08 Date: Thu, 6 Aug 2020 04:21:26 -0500 Subject: [PATCH] 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. :sweat_smile: --- src/js/profile/application_settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/profile/application_settings.js b/src/js/profile/application_settings.js index 50c34e0e..2167c77c 100644 --- a/src/js/profile/application_settings.js +++ b/src/js/profile/application_settings.js @@ -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,