minor changes to a2065.cpp

This commit is contained in:
Frode Solheim 2015-05-15 00:51:55 +02:00
parent 306c7a8b7c
commit c83d20b470

View File

@ -10,6 +10,8 @@
#include "sysconfig.h"
#include "sysdeps.h"
#ifdef A2065
#include "options.h"
#include "memory.h"
#include "custom.h"
@ -163,7 +165,7 @@ static void dumppacket (const TCHAR *n, uae_u8 *packet, int len)
_stprintf (buf + i * 3, _T(".%02X"), packet[i]);
}
write_log (_T("%s %d: "), n, len);
write_log (buf);
write_log (_T("%s"), buf);
write_log (_T("\n\n"));
}
#endif
@ -983,3 +985,5 @@ addrbank *a2065_init (int devnum)
configured = 0;
return a2065_config ();
}
#endif /* A2065 */