Skip to content

Commit cbcc059

Browse files
committed
UFO test link and clearer split between RRs
1 parent 48486ab commit cbcc059

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

js/fpsCalculator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ function calculateFPS() {
8686
const usableDivisors = getLargestDivisors(rr).filter(d => d >= 60);
8787
let recommendations = usableDivisors.map(d =>
8888
d === rr ? `${(d - 0.05).toFixed(2)}` : d
89-
).join(' / ');
89+
).join(' or ');
9090

9191
let warning = '';
9292
if (!commonRates.includes(rr) && rr > 75) {
@@ -103,7 +103,7 @@ function calculateFPS() {
103103

104104
results.innerHTML = `
105105
<div class="card card-basic">
106-
<p>Recommended FPS ${usableDivisors.length === 1 ? 'Limit' : 'Limits'}: ${recommendations}</p>
106+
<p>Recommended FPS ${usableDivisors.length === 1 ? 'Limit' : 'Limits'}: ${recommendations} (choose one)</p>
107107
</div>
108108
${warning}
109109
<div class="card card-green">

sitemap.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
<url>
6969
<loc>https://themidnightride.moddinglinked.com/utilities.html</loc>
7070
<priority>0.64</priority>
71-
<lastmod>2025-10-11</lastmod>
71+
<lastmod>2025-10-17</lastmod>
7272
</url>
7373
<url>
7474
<loc>https://themidnightride.moddinglinked.com/mo2.html</loc>

utilities.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ <h3 class="install">Installation instructions</h3>
333333
<li>Set <b>DisableBlackLoadingScreens</b> to <strong>true</strong> (line 37).</li>
334334
<li>Set <b>PostloadingMenuSpeed</b> to <strong>3.0</strong> (line 51).</li>
335335
<li>Set <b>OneThreadWhileLoading</b> to <strong>false</strong> (line 84).</li>
336-
<li>Use the calculator below to determine your optimal FPS limit<sup><a title="Warning" href="#annotation2">[2]</a></sup> setting:</li>
336+
<li>Use the calculator below to determine your optimal FPS limit<sup><a title="Warning" href="#annotation2">[2]</a></sup> setting. You can find your exact refresh rate <b><a href="https://www.testufo.com/refreshrate" target="_blank">here</a></b>.</li>
337337

338338
<div class="card-basic">
339339
<div class="center" style="margin: 10px;">

0 commit comments

Comments
 (0)