Skip to content

Commit fd8ef72

Browse files
committed
Added Clear Count to Statistics tab
1 parent 0e792ec commit fd8ef72

3 files changed

Lines changed: 29 additions & 3 deletions

File tree

DeS-SaveEdit/DeS-SaveEdit.vbproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<OutputType>WinExe</OutputType>
1111
<StartupObject>DeSEditor.My.MyApplication</StartupObject>
1212
<RootNamespace>DeSEditor</RootNamespace>
13-
<AssemblyName>DeSEditor</AssemblyName>
13+
<AssemblyName>DeS-SaveEdit</AssemblyName>
1414
<FileAlignment>512</FileAlignment>
1515
<MyType>WindowsForms</MyType>
1616
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
@@ -41,7 +41,7 @@
4141
<DefineDebug>true</DefineDebug>
4242
<DefineTrace>true</DefineTrace>
4343
<OutputPath>bin\Debug\</OutputPath>
44-
<DocumentationFile>DeSEditor.xml</DocumentationFile>
44+
<DocumentationFile>DeS-SaveEdit.xml</DocumentationFile>
4545
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
4646
<Prefer32Bit>false</Prefer32Bit>
4747
</PropertyGroup>
@@ -52,7 +52,7 @@
5252
<DefineTrace>true</DefineTrace>
5353
<Optimize>true</Optimize>
5454
<OutputPath>bin\Release\</OutputPath>
55-
<DocumentationFile>DeSEditor.xml</DocumentationFile>
55+
<DocumentationFile>DeS-SaveEdit.xml</DocumentationFile>
5656
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
5757
<Prefer32Bit>false</Prefer32Bit>
5858
</PropertyGroup>

DeS-SaveEdit/DeS.Designer.vb

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

DeS-SaveEdit/DeS.vb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,8 @@ Public Class DeS
299299
txtW4Tendency.Text = RSingle(&H1EC08)
300300
txtW5Tendency.Text = RSingle(&H1EC18)
301301

302+
txtClearCount.Text = bytes(&H1EC58)
303+
302304
chkArchSealed.Checked = Not OneByteAnd(&H1F965, &H40)
303305

304306
Catch ex As Exception
@@ -492,6 +494,8 @@ Public Class DeS
492494
WSingle(&H1EC20, Val(txtW2Tendency.Text))
493495
WSingle(&H1EC24, Val(txtW2Tendency.Text))
494496

497+
bytes(&H1EC58) = Val(txtClearCount.Text)
498+
495499
bytes(&H1F965) = (bytes(&H1F965) And &HBF) Or &H40 * ((Not chkArchSealed.Checked) * -1)
496500

497501
BytesToFile(filename, bytes)

0 commit comments

Comments
 (0)