From e2df7b7c2b6b8f1eb74dbabe13e0a598bdb534be Mon Sep 17 00:00:00 2001 From: NotAKidoS <37721153+NotAKidOnSteam@users.noreply.github.com> Date: Tue, 20 Jun 2023 18:42:30 -0500 Subject: [PATCH] [DesktopVRSwitch] Fix MelonColor being piss color. why the fuck is melonloader console color ARGB, why is there alpha?? --- DesktopVRSwitch/Properties/AssemblyInfo.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DesktopVRSwitch/Properties/AssemblyInfo.cs b/DesktopVRSwitch/Properties/AssemblyInfo.cs index 84236f0..a2eb5a7 100644 --- a/DesktopVRSwitch/Properties/AssemblyInfo.cs +++ b/DesktopVRSwitch/Properties/AssemblyInfo.cs @@ -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;