mirror of https://github.com/xemu-project/xemu.git
ui: Warn user about no output when AV Pack set to "None"
This commit is contained in:
parent
b605381adb
commit
800eb468a4
|
@ -989,6 +989,10 @@ void MainMenuSystemView::Draw()
|
||||||
ImGui::TextColored(ImVec4(1,0,0,1), "Application restart required to apply settings");
|
ImGui::TextColored(ImVec4(1,0,0,1), "Application restart required to apply settings");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ((int)g_config.sys.avpack == CONFIG_SYS_AVPACK_NONE) {
|
||||||
|
ImGui::TextColored(ImVec4(1,0,0,1), "Setting AV Pack to NONE disables video output.");
|
||||||
|
}
|
||||||
|
|
||||||
SectionTitle("System Configuration");
|
SectionTitle("System Configuration");
|
||||||
|
|
||||||
if (ChevronCombo(
|
if (ChevronCombo(
|
||||||
|
|
Loading…
Reference in New Issue