You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (EmuConfig.GS.LoadTextureReplacements && EmuConfig.GS.DumpReplaceableTextures)
3187
+
preloading_warning += fmt::format(TRANSLATE_FS("VMManager", "{}Texture replacement and dumping will not work unless texture preloading is set to Full."),
3188
+
preloading_warning.empty() ? "" : "\n");
3189
+
elseif (EmuConfig.GS.LoadTextureReplacements)
3190
+
preloading_warning += fmt::format(TRANSLATE_FS("VMManager", "{}Texture replacement will not work unless texture preloading is set to Full."),
3191
+
preloading_warning.empty() ? "" : "\n");
3192
+
elseif (EmuConfig.GS.DumpReplaceableTextures)
3193
+
preloading_warning += fmt::format(TRANSLATE_FS("VMManager", "{}Texture dumping will not work unless texture preloading is set to Full."),
0 commit comments