mirror of
https://github.com/badvision/lawless-legends.git
synced 2025-03-04 07:29:21 +00:00
Fix printf errors
This commit is contained in:
parent
e29c5808b4
commit
ffdc8732d9
@ -274,7 +274,7 @@ int load_mod(byte *mod)
|
||||
char filename[32], string[17];
|
||||
|
||||
dcitos(mod, filename);
|
||||
printf("Load module %s\n");
|
||||
printf("Load module %s\n", filename);
|
||||
int fd = open(filename, O_RDONLY, 0);
|
||||
if ((fd > 0) && (len = read(fd, header, 128)) > 0)
|
||||
{
|
||||
@ -435,7 +435,7 @@ void call(word pc)
|
||||
interp(mem_data + (mem_data[pc] + (mem_data[pc + 1] << 8)));
|
||||
break;
|
||||
case 3: // LIBRARY STDLIB::VIEWPORT
|
||||
printf("Set Window %d, %d, %d, %n/n", POP, POP, POP, POP);
|
||||
printf("Set Window %d, %d, %d, %d/n", POP, POP, POP, POP);
|
||||
PUSH(0);
|
||||
break;
|
||||
case 4: // LIBRARY STDLIB::PUTC
|
||||
|
Loading…
x
Reference in New Issue
Block a user