Change FOR loop to WHILE loop
This commit is contained in:
parent
4eebb4c7ad
commit
0abfc8515a
|
@ -35,7 +35,8 @@ namespace RPG_Maker_LDB_Printer
|
||||||
ContinueIndent();
|
ContinueIndent();
|
||||||
GetInt();
|
GetInt();
|
||||||
OpenIndent();
|
OpenIndent();
|
||||||
for (bool Data_end = false; Data_end == false;)
|
bool Data_end = false;
|
||||||
|
while (Data_end == false)
|
||||||
{
|
{
|
||||||
ContinueIndent();
|
ContinueIndent();
|
||||||
int subData = GetInt();
|
int subData = GetInt();
|
||||||
|
|
Loading…
Reference in New Issue