Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Nitro Texture Compressor for compression 4x4 blocks #31

Merged
merged 4 commits into from
Jan 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Ekona/Ekona.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>4194304</BaseAddress>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
Expand All @@ -46,6 +47,7 @@
<GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
<BaseAddress>4194304</BaseAddress>
<PlatformTarget>AnyCPU</PlatformTarget>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
Expand Down Expand Up @@ -90,6 +92,7 @@
<Compile Include="Images\ImageControl.designer.cs">
<DependentUpon>ImageControl.cs</DependentUpon>
</Compile>
<Compile Include="Images\NitroTextureCompressor.cs" />
<Compile Include="Images\SpriteControl.cs">
<SubType>UserControl</SubType>
</Compile>
Expand All @@ -106,6 +109,8 @@
<DependentUpon>PaletteControl.cs</DependentUpon>
</Compile>
<Compile Include="Images\RawData.cs" />
<Compile Include="Mathematics\NvMath.cs" />
<Compile Include="Mathematics\Vector3.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
Expand Down Expand Up @@ -135,6 +140,7 @@
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
2 changes: 1 addition & 1 deletion Ekona/Images/ImageBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public abstract class ImageBase
#region Variable definition
protected IPluginHost pluginHost; // Optional
protected string fileName;
protected int id;
protected int id = -1;
bool loaded;

Byte[] original;
Expand Down
2 changes: 1 addition & 1 deletion Ekona/Images/MapBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public abstract class MapBase

#region Variables
protected IPluginHost pluginHost;
protected int id;
protected int id = -1;
protected string fileName;
bool loaded;

Expand Down
Loading