File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 8
8
* .code-workspace
9
9
.vscode /
10
10
11
+ Changelog.md
11
12
BenderUserSettings.ini
12
13
! TestImage.png
13
14
! InputTemplate.png
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Import "Types/GraphicsOutput.bmx"
15
15
16
16
'////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
17
17
18
- AppTitle = " CC Bender 2.0.0 " '4 Mar 2021
18
+ AppTitle = " CC Bender 2.0.1 " '28 Apr 2021
19
19
20
20
Global g_SettingsManager:SettingsManager = Null
21
21
Global g_UserInterface:UserInterface = Null
Original file line number Diff line number Diff line change 1
- app.version.name=2.0.0
1
+ app.version.name=2.0.1
2
2
app.name=CC Bender
3
3
app.description=Cortex Command Bender
Original file line number Diff line number Diff line change @@ -127,12 +127,12 @@ Type FileIO
127
127
limbName = " LegBG"
128
128
EndSelect
129
129
130
- For Local frame:Int = 0 To frameCount - 1
130
+ For Local frame:Int = 0 Until frameCount
131
131
Local leadingZeros:String = " 00"
132
- Local fullFilename:String = filename + limbName + leadingZeros + frame
133
- If frame < 10 Then
132
+ If frame >= 10 Then
134
133
leadingZeros = " 0"
135
134
EndIf
135
+ Local fullFilename:String = filename + limbName + leadingZeros + frame
136
136
137
137
If m_SaveAsIndexed Then
138
138
Select m_IndexedFileType
You can’t perform that action at this time.
0 commit comments