This commit is contained in:
Doveliyuchen 2023-03-09 15:58:21 +08:00
commit 05701fd822
3 changed files with 5 additions and 5 deletions

Binary file not shown.

File diff suppressed because one or more lines are too long

View File

@ -83,9 +83,9 @@ public class MarioRender extends JComponent implements FocusListener {
} }
if(renderBuffer>0){ if(renderBuffer>0){
if((renderBuffer/10)%2 == 1){ if((renderBuffer/10)%2 == 1){
drawString(og,"YOU LOSE ONE LIFE!!",56,56,1,1f); drawString(og,"YOU LOSE A LIFE!!",56,56,1,1f);
}else{ }else{
drawString(og,"YOU LOSE ONE LIFE!!",56,56,0,1f); drawString(og,"YOU LOSE A LIFE!!",56,56,0,1f);
} }
renderBuffer--; renderBuffer--;
} }