mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 13:01:44 +00:00
Handle relative file paths in profiler config loading. (#685)
This commit is contained in:
parent
8a7d99cdea
commit
5682de7c0f
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.IO;
|
||||
|
||||
namespace Ryujinx.Profiler
|
||||
{
|
||||
|
@ -18,7 +19,7 @@ namespace Ryujinx.Profiler
|
|||
[Conditional("USE_PROFILING")]
|
||||
public static void Initalize()
|
||||
{
|
||||
var config = ProfilerConfiguration.Load("ProfilerConfig.jsonc");
|
||||
var config = ProfilerConfiguration.Load(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "ProfilerConfig.jsonc"));
|
||||
|
||||
_settings = new ProfilerSettings()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue