Skip to content

Commit

Permalink
prio fix
Browse files Browse the repository at this point in the history
  • Loading branch information
orian34 committed Mar 18, 2024
1 parent 3fa90f8 commit e853c77
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, "s_chisibuki", 56, 64 );
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)
DrawBustshot( 27, "Toketu1a", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 26, 10, TRUE );
SetValidityOfInput( FALSE );
Wait( 1800 );
SetValidityOfInput( TRUE );
PlaySE( 0, "s_chisibuki", 56, 64 );
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)
DrawBustshot( 28, "Toketu1b", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 27, 10, TRUE );
SetValidityOfInput( FALSE );
Wait( 2300 );
SetValidityOfInput( TRUE );
PlaySE( 0, "s_chisibuki", 56, 64 );
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
DrawBustshot( 29, "Toketu1c", 0, 0, 0, FALSE, 0, 0, 0, 0, 0, 0, 0, 28, 10, TRUE );
SetValidityOfInput( FALSE );
Wait( 3000 );
SetValidityOfInput( TRUE );
Expand Down

0 comments on commit e853c77

Please sign in to comment.