CSPspEmu.AutoTests.AutoTestsProgram.Init C# (CSharp) Method

Init() public method

public Init ( ) : void
return void
        public void Init()
        {
            foreach (var _FileName in new[] {
                    Path.GetDirectoryName(typeof(AutoTestsProgram).Assembly.Location) + @"\CSPspEmu.Hle.Modules.dll",
                    Application.ExecutablePath,
                })
            {
                if (File.Exists(_FileName))
                {
                    HleConfig.HleModulesDll = Assembly.LoadFile(_FileName);
                    break;
                }
            }
        }