From 5ecfb5c6576a473870bbc8e25ae34ccf916e5a0a Mon Sep 17 00:00:00 2001 From: Ac_K Date: Fri, 9 Feb 2018 03:47:32 +0100 Subject: Add internal Config support (#5) * Add internal Logging support Add class Logging. Replace all Console.WriteLine() to looks better. Add informations inside Windows Titles. * Revert "Add internal Logging support" This reverts commit 275d363aaf30011f238010572cfdb320bd7b627f. * Add internal Logging support Add Logging Class. Replace all Console.WriteLine() to looks better. Add debug informations of IpcMessage. Add informations inside Windows Titles. * Add internal Logging support2 Add Logging Class. Replace all Console.WriteLine() to looks better. Add debug informations of IpcMessage. Add informations inside Windows Titles. * Add internal Config support Add Config Class. Add Ryujinx.conf file (Ini file). Use the Config Class inside Logging. * Add internal Config support Add Config Class. Add Ryujinx.conf file (Ini file). Use the Config Class inside Logging. --- Program.cs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Program.cs') diff --git a/Program.cs b/Program.cs index 79a4f707..5569cd49 100644 --- a/Program.cs +++ b/Program.cs @@ -9,6 +9,8 @@ namespace Ryujinx { static void Main(string[] args) { + Config.Read(); + Console.Title = "Ryujinx Console"; IGalRenderer Renderer = new OpenGLRenderer(); -- cgit v1.2.3