Stupid error. Fixed. %-)
This commit is contained in:
parent
093370587f
commit
c306f82883
|
@ -204,9 +204,9 @@ void draw_status() {
|
||||||
void draw_sprite(char type, char x, char y) {
|
void draw_sprite(char type, char x, char y) {
|
||||||
font = &Font_Invaders;
|
font = &Font_Invaders;
|
||||||
if(type==TYPE_PLAYER){
|
if(type==TYPE_PLAYER){
|
||||||
DoChar(x,y-1,"P");
|
DoChar(x,y-1,'P');
|
||||||
}else{
|
}else{
|
||||||
DoChar(x,y-1,"C");
|
DoChar(x,y-1,'C');
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue