tfv: fix inventory

This commit is contained in:
Vince Weaver 2017-11-18 23:17:26 -05:00
parent 299faa0060
commit 939cc6236b
2 changed files with 5 additions and 5 deletions

View File

@ -157,10 +157,10 @@ void print_info(void) {
ram[0x30]=0x20;
/* Draw boxes */
hlin_double(0,0,40,0);
hlin_double(0,0,40,4);
hlin_double(0,0,40,8);
hlin_double(0,0,40,46);
hlin_double(0,0,39,0);
hlin_double(0,0,39,4);
hlin_double(0,0,39,8);
hlin_double(0,0,39,46);
basic_vlin(0,48,0);
basic_vlin(0,48,20);

View File

@ -76,7 +76,7 @@ void print_u8(unsigned char value) {
sprintf(temp,"%d",value);
print(temp);
basic_print(temp);
}