Skip to content

Commit 1927b38

Browse files
committed
Made logo black. Not political, just looks cool.
1 parent 6b8d6f0 commit 1927b38

File tree

6 files changed

+34
-16
lines changed

6 files changed

+34
-16
lines changed

WinTerrEdit/Properties/Resources.Designer.cs

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WinTerrEdit/Properties/Resources.resx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,7 @@
124124
<data name="winTerrEditLogoSmall" type="System.Resources.ResXFileRef, System.Windows.Forms">
125125
<value>..\Resources\winTerrEditLogoSmall.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
126126
</data>
127+
<data name="winTerrEditLogoSmallInverted" type="System.Resources.ResXFileRef, System.Windows.Forms">
128+
<value>..\Resources\winTerrEditLogoSmallInverted.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
129+
</data>
127130
</root>
2.41 KB
Loading

WinTerrEdit/WinTerrEdit.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@
186186
</ItemGroup>
187187
<ItemGroup>
188188
<Content Include="rainbowBrick.ico" />
189+
<None Include="Resources\winTerrEditLogoSmallInverted.png" />
189190
<EmbeddedResource Include="Resources\winTerrEditLogoSmall.png" />
190191
<EmbeddedResource Include="Resources\crappyreload.png" />
191192
</ItemGroup>

WinTerrEdit/loading.Designer.cs

Lines changed: 10 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

WinTerrEdit/loading.cs

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public partial class loading : Form
2424
public int r = 255;
2525
public int g = 0;
2626
public int b = 0;
27-
float frequency = 0.3f;
27+
float frequency = 0.1f;
2828

2929
public Color current = Color.FromArgb(0, 0, 0);
3030

@@ -60,11 +60,11 @@ private void timer1_Tick(object sender, EventArgs e)
6060
count++;
6161
}
6262

63-
// ,adPPYba, ,adPPYba, 8b,dPPYba, 8b,dPPYba,
64-
// a8" "" a8" "8a 88P' "Y8 88P' `"8a
65-
// 8b 8b d8 88 88 88
66-
// "8a, ,aa "8a, ,a8" 88 88 88
67-
// `"Ybbd8"' `"YbbdP"' 88 88 88
63+
// ,adPPYba, ,adPPYba, 8b,dPPYba, 8b,dPPYba,
64+
// a8" "" a8" "8a 88P' "Y8 88P' `"8a
65+
// 8b 8b d8 88 88 88
66+
// "8a, ,aa "8a, ,a8" 88 88 88
67+
// `"Ybbd8"' `"YbbdP"' 88 88 88
6868

6969
public Bitmap getCorn()
7070
{
@@ -79,12 +79,14 @@ public Bitmap getCorn()
7979
return corn;
8080
}
8181

82-
public int i = 0;
82+
public int i = -32;
8383
private void timer2_Tick(object sender, EventArgs e)
8484
{
85+
86+
8587
if (i == 32)
8688
{
87-
i = 0;
89+
i = -32;
8890
}
8991

9092
i++;

0 commit comments

Comments
 (0)