Skip to content

Commit

Permalink
Priority Fixes for review
Browse files Browse the repository at this point in the history
 - Includes automatically fixed priority on lines with error
 - Please delete //ERROR_EXISTING: comments, those are just to indicate where priority was last used
  • Loading branch information
drojf committed Mar 18, 2024
1 parent 228c4b2 commit d0fbd28
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Update/&toketu2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ void main()
{
DisableWindow();
PlaySE( 0, "Thisikuki", 56, 64 );
DrawBustshot( 27, "Toketu1a", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 26, 10, TRUE );
DrawBustshot( 27, "Toketu1a", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 26, 10, TRUE ); //ERROR_EXISTING: Priority 26 on layer 27 used here. Conflict is 5 lines away (line 12)
SetValidityOfInput( FALSE );
Wait( 1800 );
SetValidityOfInput( TRUE );
PlaySE( 0, "Thisikuki", 56, 64 );
DrawBustshot( 28, "Toketu1b", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 26, 10, TRUE );
DrawBustshot( 28, "Toketu1b", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 27, 10, TRUE ); //ERROR: Priority 26 already in use 5 lines ago (line 7). Existing Layer: 27 Conflicting Layer: 28 Suggested Priority: 27ERROR_EXISTING: Priority 26 on layer 28 used here. Conflict is 5 lines away (line 17)
SetValidityOfInput( FALSE );
Wait( 2300 );
SetValidityOfInput( TRUE );
PlaySE( 0, "Thisikuki", 56, 64 );
DrawBustshot( 29, "Toketu1c", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 26, 10, TRUE );
DrawBustshot( 29, "Toketu1c", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 28, 10, TRUE ); //ERROR: Priority 26 already in use 5 lines ago (line 12). Existing Layer: 28 Conflicting Layer: 29 Suggested Priority: 28
SetValidityOfInput( FALSE );
Wait( 3000 );
SetValidityOfInput( TRUE );
Expand Down

0 comments on commit d0fbd28

Please sign in to comment.