explicitly check legacy setting instead of falling back to defaults

This commit is contained in:
13xforever 2021-03-21 22:56:45 +05:00
parent 0e859db8eb
commit cc2011c529

View File

@ -423,7 +423,7 @@ namespace CompatBot.Utils.ResultFormatters
}
else if (items["disable_async_shaders"] == DisabledMark)
items["shader_mode"] = "Async";
else
else if (items["disable_async_shaders"] == EnabledMark)
items["shader_mode"] = "Recompiler only";
static string? reformatDecoder(string? dec)