1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Remove usage of sprintf.

This commit is contained in:
Thomas Harte 2022-11-11 20:29:59 -05:00
parent 79224d9383
commit ae8f0d339e

View File

@ -32,7 +32,7 @@ class ComparativeBusHandler: public CPU::MC68000Mk2::BusHandler {
// Generate state locally.
const auto state = get_state().registers;
char local_state[300];
sprintf(local_state, "%04x: %02x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
snprintf(local_state, sizeof(local_state), "%04x: %02x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x %08x\n",
address,
state.status,
state.data[0], state.data[1], state.data[2], state.data[3], state.data[4], state.data[5], state.data[6], state.data[7],