manuals tidy tier 3a: rondes, ternaris, anyofallof, padding, etc.

This commit is contained in:
2026-05-14 19:24:02 +02:00
parent 0b82be193f
commit a48fe51f73
13 changed files with 54 additions and 32 deletions
+2 -1
View File
@@ -346,7 +346,7 @@ namespace Options {
file << " shader_enabled: " << (video.shader_enabled ? "true" : "false") << "\n";
file << " supersampling: " << (video.supersampling ? "true" : "false") << "\n";
{
const char* m = "integer";
const char* m = nullptr;
switch (video.scaling_mode) {
case ScalingMode::DISABLED:
m = "disabled";
@@ -361,6 +361,7 @@ namespace Options {
m = "overscan";
break;
case ScalingMode::INTEGER:
default:
m = "integer";
break;
}