Removed one useless variable and fixed the logging.

This commit is contained in:
TC1995
2021-08-17 14:29:53 +02:00
parent a4f2d781e8
commit 250fd9d285

View File

@@ -114,7 +114,7 @@ typedef struct {
uint8_t status;
uint8_t buffer[512];
uint8_t ext_ram[0x600];
uint8_t block_count, bufval[512];
uint8_t block_count;
int block_loaded, xfer_complete;
int pos, host_pos;
@@ -183,7 +183,7 @@ ncr_log(const char *fmt, ...)
if (ncr5380_do_log) {
va_start(ap, fmt);
ncr_log_ex(fmt, ap);
pclog_ex(fmt, ap);
va_end(ap);
}
}