[DesktopVRSwitch] Fix MelonColor being piss color.

why the fuck is melonloader console color ARGB, why is there alpha??
This commit is contained in:
NotAKidoS 2023-06-20 18:42:30 -05:00
parent 730a085850
commit e2df7b7c2b

View file

@ -20,7 +20,7 @@ using System.Reflection;
[assembly: MelonGame("Alpha Blend Interactive", "ChilloutVR")]
[assembly: MelonPlatform(MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)]
[assembly: MelonPlatformDomain(MelonPlatformDomainAttribute.CompatibleDomains.MONO)]
[assembly: MelonColor(255, 139, 139, 0)]
[assembly: MelonColor(255, 0, 139, 139)]
[assembly: HarmonyDontPatchAll]
namespace NAK.DesktopVRSwitch.Properties;