diff --git a/CHANGELIST.md b/CHANGELIST.md index 8cdf8bea..132b0374 100644 --- a/CHANGELIST.md +++ b/CHANGELIST.md @@ -26,6 +26,7 @@ - Fix unnecessary null assignment - Empty should be null (fuzz6001) - Remove legacy codes from info window +- Net Yaroze only for PS1 ### 3.3.2 (2025-06-12) diff --git a/MPF.UI/Windows/MediaInformationWindow.xaml b/MPF.UI/Windows/MediaInformationWindow.xaml index bc61ad34..f8dada7c 100644 --- a/MPF.UI/Windows/MediaInformationWindow.xaml +++ b/MPF.UI/Windows/MediaInformationWindow.xaml @@ -296,7 +296,7 @@ - diff --git a/MPF.UI/Windows/MediaInformationWindow.xaml.cs b/MPF.UI/Windows/MediaInformationWindow.xaml.cs index 18053748..12638d65 100644 --- a/MPF.UI/Windows/MediaInformationWindow.xaml.cs +++ b/MPF.UI/Windows/MediaInformationWindow.xaml.cs @@ -25,6 +25,12 @@ namespace MPF.UI.Windows #endregion + #region Contents + + private UserInput? NetYarozeGamesTextBox => ItemHelper.FindChild(this, "NetYarozeGamesTextBox"); + + #endregion + #region Ringcodes private GroupBox? L0Info => ItemHelper.FindChild(this, "L0Info"); @@ -444,6 +450,10 @@ namespace MPF.UI.Windows DiscKeyTextBox!.Visibility = Visibility.Visible; break; + case RedumpSystem.SonyPlayStation: + NetYarozeGamesTextBox!.Visibility = Visibility.Visible; + break; + case RedumpSystem.SonyPlayStation2: LanguageSelectionGrid!.Visibility = Visibility.Visible; break;