Removed bogus logs

This commit is contained in:
Barış Hamil 2025-06-21 00:59:17 +03:00 committed by GreemDev
parent 10e6fbcb72
commit ef0dac5533
2 changed files with 0 additions and 11 deletions

View file

@ -68,7 +68,6 @@ namespace Ryujinx.Graphics.Gpu.Overlay
foreach (var config in inputConfigs.Where(c => c.PlayerIndex <= OriginalPlayerIndex.Player4)) foreach (var config in inputConfigs.Where(c => c.PlayerIndex <= OriginalPlayerIndex.Player4))
{ {
Console.WriteLine($"ControllerOverlay: Config for Player {config.PlayerIndex}: {config.Name} ({config.Backend})");
if (!playerBindings.ContainsKey(config.PlayerIndex)) if (!playerBindings.ContainsKey(config.PlayerIndex))
{ {
playerBindings[config.PlayerIndex] = new List<OriginalInputConfig>(); playerBindings[config.PlayerIndex] = new List<OriginalInputConfig>();

View file

@ -1707,16 +1707,6 @@ namespace Ryujinx.Ava.UI.ViewModels
? ConfigurationState.InstanceExtra.Hid.InputConfig.Value ? ConfigurationState.InstanceExtra.Hid.InputConfig.Value
: ConfigurationState.Instance.Hid.InputConfig.Value; : ConfigurationState.Instance.Hid.InputConfig.Value;
// Debug: Log what we're getting
Logger.Info?.Print(LogClass.UI, $"MainWindowViewModel: Found {inputConfigs?.Count ?? 0} input configs");
if (inputConfigs != null)
{
foreach (var config in inputConfigs)
{
Logger.Info?.Print(LogClass.UI, $" Config: Player {config.PlayerIndex}, Backend {config.Backend}, Name '{config.Name}', Type {config.ControllerType}");
}
}
// Always show overlay - if no configs, it will show test data // Always show overlay - if no configs, it will show test data
int duration = ConfigurationState.Instance.ControllerOverlayGameStartDuration.Value; int duration = ConfigurationState.Instance.ControllerOverlayGameStartDuration.Value;
// Show overlay through the GPU context window directly // Show overlay through the GPU context window directly