From cd13bf29591cd63092b719fb0e0d96035f5579e8 Mon Sep 17 00:00:00 2001 From: NicoAICP Date: Wed, 8 Apr 2020 04:35:47 +0200 Subject: [PATCH] Warnings for DSi Enhanced / Snes with co-processor --- UWUVCI AIO WPF/Models/MainViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UWUVCI AIO WPF/Models/MainViewModel.cs b/UWUVCI AIO WPF/Models/MainViewModel.cs index 622c748..a7e039b 100644 --- a/UWUVCI AIO WPF/Models/MainViewModel.cs +++ b/UWUVCI AIO WPF/Models/MainViewModel.cs @@ -596,10 +596,10 @@ namespace UWUVCI_AIO_WPF switch (GameConfiguration.Console) { case GameConsoles.NDS: - MessageBox.Show("You can only inject NDS ROMs that are not DSi Enhanced (example for not working: Pokémon Black & White)", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show("You can only inject NDS ROMs that are not DSi Enhanced (example for not working: Pokémon Black & White)\n\nIf attempting to inject a DSi Enhanced ROM, we will not give you any support with fixing said injection", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information); break; case GameConsoles.SNES: - MessageBox.Show("You can only inject SNES ROMs that are not using any Co-Processors (example for not working: Star Fox)", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information); + MessageBox.Show("You can only inject SNES ROMs that are not using any Co-Processors (example for not working: Star Fox)\n\nIf attempting to inject a ROM in need of a Co-Processor, we will not give you any support with fixing said injection", "Information", MessageBoxButtons.OK, MessageBoxIcon.Information); break; } using (var dialog = new System.Windows.Forms.OpenFileDialog())