aboutsummaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorAc_K <Acoustik666@gmail.com>2018-02-09 03:47:32 +0100
committergdkchan <gab.dark.100@gmail.com>2018-02-08 23:47:32 -0300
commit5ecfb5c6576a473870bbc8e25ae34ccf916e5a0a (patch)
tree7ab7d16dfcd5d6022a1e6c69620626a851394d6f /Program.cs
parentaba75186e92f2dd0dd459642f58edf159ab51f86 (diff)
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.
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs2
1 files changed, 2 insertions, 0 deletions
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();