how do i remove ▯(blank space) when my game runs?

C

Caio Chaves

Guest
this symbol(▯) appears when i play my game, how can i remove this?
Code:
draw_text(
            room_width/2, 200,
            @"Score 1,000 points to win!
            UP: MOVE
            LEFT/RIGHT: CHANGE DIRECTION
            SPACE: SHOOT\n\n
            >> PRESS ENTER TO START <<"
        );
 

Attachments

FrostyCat

Redemption Seeker
You have to make sure that tabs are not in the string that draw_text() ultimately handles. Here's one way to do it while maintaining code spacing:
Code:
draw_text(
  room_width/2, 200,
  "Score 1,000 points to win!\n" +
  "UP: MOVE\n" +
  "LEFT/RIGHT: CHANGE DIRECTION\n" +
  "SPACE: SHOOT\n\n" +
  ">> PRESS ENTER TO START <<"
);
 
Top