Skip to content

Commit

Permalink
Fixed party_menu_tutor_list.h output
Browse files Browse the repository at this point in the history
  • Loading branch information
AsparagusEduardo committed Oct 30, 2021
1 parent 66d78fc commit d415397
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moveParser/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -740,10 +740,10 @@ private void bwrkExportTutor_DoWork(object sender, DoWorkEventArgs e)
for (int j = 0; j < tutorMoves.Count; j++)
{
string move = tutorMoves[j];
tutors += $"#define {move,-28} {j,3}\n";
tutors += $"#define TUTOR_{move,-22} {j,3}\n";
}
tutors += $"#define TUTOR_MOVE_COUNT {tutorMoves.Count,3}";
File.WriteAllText("party_menu_tutor_list.h", tutors);
File.WriteAllText("output/party_menu_tutor_list.h", tutors);

// file header
string sets = "const u16 gTutorMoves[TUTOR_MOVE_COUNT] =\n{\n";
Expand Down

0 comments on commit d415397

Please sign in to comment.