From 3672f52619c2064c3c6d27f1341b09974779c2d6 Mon Sep 17 00:00:00 2001 From: tobspr Date: Sun, 28 Jun 2020 10:24:11 +0200 Subject: [PATCH] Add 120hz refresh rate --- 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 be81c695..708c4d7b 100644 --- a/src/js/profile/application_settings.js +++ b/src/js/profile/application_settings.js @@ -215,7 +215,7 @@ export const allApplicationSettings = [ }), new EnumSetting("refreshRate", { - options: ["60", "100", "144", "165", "250", G_IS_DEV ? "10" : "500"], + options: ["60", "100", "120", "144", "165", "250", G_IS_DEV ? "10" : "500"], valueGetter: rate => rate, textGetter: rate => rate + " Hz", category: categoryGame,