From f76ddf210360439626aa65b105e1f980000d8a00 Mon Sep 17 00:00:00 2001 From: Tau Date: Sun, 3 Nov 2019 19:54:41 -0500 Subject: [PATCH] platform/amvideo.c: Trim debug log We don't really need to dump all those hex memory addresses. --- platform/amvideo.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/platform/amvideo.c b/platform/amvideo.c index 2c41b79..ef4b213 100644 --- a/platform/amvideo.c +++ b/platform/amvideo.c @@ -153,28 +153,28 @@ HRESULT amvideo_hook_init(const struct amvideo_config *cfg, HMODULE redir_mod) static int amDllVideoOpen(void *ctx) { - dprintf("AmVideo: %s(%p)\n", __func__, ctx); + dprintf("AmVideo: %s)\n", __func__); return 0; } static int amDllVideoClose(void *ctx) { - dprintf("AmVideo: %s(%p)\n", __func__, ctx); + dprintf("AmVideo: %s)\n", __func__); return 0; } static int amDllVideoSetResolution(void *ctx, void *param) { - dprintf("AmVideo: %s(%p, %p)\n", __func__, ctx, param); + dprintf("AmVideo: %s\n", __func__); return 0; } static int amDllVideoGetVBiosVersion(void *ctx, char *dest, size_t nchars) { - dprintf("AmVideo: %s(%p, %p, %i)\n", __func__, ctx, dest, (int) nchars); + dprintf("AmVideo: %s\n", __func__); strcpy(dest, "01.02.03.04.05"); return 0;