From 21b53868417e2cac8fc76b50057508d0c42884e2 Mon Sep 17 00:00:00 2001 From: AcK77 Date: Fri, 9 Feb 2018 03:36:17 +0100 Subject: [PATCH] Add internal Config support Add Config Class. Add Ryujinx.conf file (Ini file). Use the Config Class inside Logging. --- Ryujinx.conf | 2 +- Ryujinx/OsHle/Objects/AudIAudioOut.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.conf b/Ryujinx.conf index 1a5ff1542b..590318fe78 100644 --- a/Ryujinx.conf +++ b/Ryujinx.conf @@ -1,5 +1,5 @@ #Enabled print informations logs -Logging_Enable_Info = false +Logging_Enable_Info = true #Enabled print trace logs Logging_Enable_Trace = true diff --git a/Ryujinx/OsHle/Objects/AudIAudioOut.cs b/Ryujinx/OsHle/Objects/AudIAudioOut.cs index c04a23ad1d..319d17fe73 100644 --- a/Ryujinx/OsHle/Objects/AudIAudioOut.cs +++ b/Ryujinx/OsHle/Objects/AudIAudioOut.cs @@ -50,7 +50,7 @@ namespace Ryujinx.OsHle.Objects } catch (Exception) { - Logging.Warning("OpenAL Error! PS: Install OpenAL Core SDK!"); + Logging.Warn("OpenAL Error! PS: Install OpenAL Core SDK!"); OpenALInstalled = false; }