This commit is contained in:
EqUiNoX
2024-03-17 21:07:46 -06:00
parent a720eb2412
commit cf87ff98ec
2 changed files with 2 additions and 9 deletions
@@ -5,7 +5,6 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationIcon>..\Artwork\cerbios.ico</ApplicationIcon>
<PublishTrimmed>false</PublishTrimmed>
<PublishSingleFile Condition="'$(Configuration)' == 'Release'">true</PublishSingleFile>
<SelfContained Condition="'$(Configuration)' == 'Release'">true</SelfContained>
@@ -13,19 +12,13 @@
<PublishReadyToRun>true</PublishReadyToRun>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<OutputType>WinExe</OutputType>
<AssemblyName>cerbiostool</AssemblyName>
<AssemblyName>prometheosconfigtool</AssemblyName>
<Platforms>x64</Platforms>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\ARIALUNI.TTF" />
<None Remove="Resources\CerbiosText.png" />
<None Remove="Resources\icon.png" />
<None Remove="Resources\Logo1.png" />
<None Remove="Resources\Logo2.png" />
<None Remove="Resources\Logo3.png" />
<None Remove="Resources\Logo4.png" />
<None Remove="Resources\SafeModeText.png" />
<None Remove="Resources\TeamResurgent.jpg" />
<None Remove="Resources\imgui-vertex.glsl" />
<None Remove="Resources\imgui-frag.glsl" />
+1 -1
View File
@@ -7,7 +7,7 @@ namespace PrometheOSConfigTool
{
public class Window : GameWindow
{
public Window() : base(GameWindowSettings.Default, new NativeWindowSettings() { Size = new Vector2i(1600, 900), APIVersion = new Version(3, 3) })
public Window() : base(GameWindowSettings.Default, new NativeWindowSettings() { ClientSize = new Vector2i(1600, 900), APIVersion = new Version(3, 3) })
{
Controller = new ImGuiController(this);
}