Change FOR loop to WHILE loop

This commit is contained in:
Michael Hinrichs 2024-07-27 16:00:13 -05:00
parent 4eebb4c7ad
commit 0abfc8515a
1 changed files with 2 additions and 1 deletions

View File

@ -35,7 +35,8 @@ namespace RPG_Maker_LDB_Printer
ContinueIndent();
GetInt();
OpenIndent();
for (bool Data_end = false; Data_end == false;)
bool Data_end = false;
while (Data_end == false)
{
ContinueIndent();
int subData = GetInt();