From 9c042e553e420696d530e802e0fab4b55297196d Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Sun, 29 May 2022 00:23:24 -0400 Subject: [PATCH] small logging improvement --- mercuryhook/elisabeth.c | 1 + mercuryhook/touch.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/mercuryhook/elisabeth.c b/mercuryhook/elisabeth.c index 7e2f268..71c4a05 100644 --- a/mercuryhook/elisabeth.c +++ b/mercuryhook/elisabeth.c @@ -35,6 +35,7 @@ static const struct hook_symbol win32_hooks[] = { HRESULT elisabeth_hook_init() { dll_hook_insert_hooks(NULL); + dprintf("Elisabeth: Init\n"); return S_OK; } diff --git a/mercuryhook/touch.c b/mercuryhook/touch.c index 44aae7e..87e757c 100644 --- a/mercuryhook/touch.c +++ b/mercuryhook/touch.c @@ -67,7 +67,7 @@ HRESULT touch_hook_init(const struct touch_config *cfg) InitializeCriticalSection(&touch0_lock); InitializeCriticalSection(&touch1_lock); - dprintf("Wacca touch: init\n"); + dprintf("Wacca touch: Init\n"); uart_init(&touch0_uart, 3); touch0_uart.written.bytes = touch0_written_bytes;