This repository has been archived on 2025-07-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
EnvyUpdate/EnvyUpdate/Debug.cs
2022-01-19 12:16:29 +01:00

40 lines
943 B
C#

using System;
using System.IO;
using System.Linq;
namespace EnvyUpdate
{
class Debug
{
public static int LoadFakeIDs(string idType)
{
/*
* Usage: Supply /debug flag to exe. Imitates a GTX 1080ti on Win10 x64 non-dch Game Ready Driver.
*/
switch (idType)
{
case "psid":
return 101;
case "pfid":
return 845;
case "osid":
return 57;
case "dtcid":
return 1;
case "dtid":
return 1;
default:
return -1;
}
}
public static string LocalDriv()
{
return "466.11";
}
public static string GPUname()
{
return "Nvidia GeForce GTX 1080ti (debug)";
}
}
}