X-Git-Url: http://git.squeep.com/?p=dcpu16;a=blobdiff_plain;f=hw_clock.c;h=fb9e195abe410b6f3c29fe82c4f110a3fbb09bef;hp=ebd58fde5568cdf4367503336acc65e869cdb638;hb=052f0d9ed1165dabd061c8eac39c3be71184a5cf;hpb=1470698024f5511a3b94b7bb50b1097cc6659b32 diff --git a/hw_clock.c b/hw_clock.c index ebd58fd..fb9e195 100644 --- a/hw_clock.c +++ b/hw_clock.c @@ -39,7 +39,7 @@ void clock_cycle_(struct dcpu16 *vm, struct dcpu16_hw *hw) { if (clock->interrupt_message) { if (dcpu16_interrupt(vm, clock->interrupt_message)) - vm->msg_cb_(MSG_ERROR, "%s: could not send interrupt", hw->mod->name_); + vm->msg_cb_(DCPU16_MSG_ERROR, "%s: could not send interrupt", hw->mod->name_); } } } @@ -71,7 +71,7 @@ int clock_data_init_(struct dcpu16_hw *hw, void *data) { hw->data = calloc(1, sizeof(struct clock_)); if (hw->data == NULL) { - hw->vm->msg_cb_(MSG_ERROR, "%s():%s", "calloc", strerror(errno)); + hw->vm->msg_cb_(DCPU16_MSG_ERROR, "%s():%s", "calloc", strerror(errno)); return -1; } return 0;