Stupid error. Fixed. %-)

This commit is contained in:
Stefan `Sec` Zehl 2011-07-17 21:58:02 +02:00
parent 093370587f
commit c306f82883
1 changed files with 2 additions and 2 deletions

View File

@ -204,9 +204,9 @@ void draw_status() {
void draw_sprite(char type, char x, char y) {
font = &Font_Invaders;
if(type==TYPE_PLAYER){
DoChar(x,y-1,"P");
DoChar(x,y-1,'P');
}else{
DoChar(x,y-1,"C");
DoChar(x,y-1,'C');
};
}