platform/amvideo.c: Trim debug log
We don't really need to dump all those hex memory addresses.remotes/1722699834674540220/tmp_refs/heads/master
parent
c7255e3ebb
commit
f76ddf2103
|
@ -153,28 +153,28 @@ HRESULT amvideo_hook_init(const struct amvideo_config *cfg, HMODULE redir_mod)
|
||||||
|
|
||||||
static int amDllVideoOpen(void *ctx)
|
static int amDllVideoOpen(void *ctx)
|
||||||
{
|
{
|
||||||
dprintf("AmVideo: %s(%p)\n", __func__, ctx);
|
dprintf("AmVideo: %s)\n", __func__);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int amDllVideoClose(void *ctx)
|
static int amDllVideoClose(void *ctx)
|
||||||
{
|
{
|
||||||
dprintf("AmVideo: %s(%p)\n", __func__, ctx);
|
dprintf("AmVideo: %s)\n", __func__);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int amDllVideoSetResolution(void *ctx, void *param)
|
static int amDllVideoSetResolution(void *ctx, void *param)
|
||||||
{
|
{
|
||||||
dprintf("AmVideo: %s(%p, %p)\n", __func__, ctx, param);
|
dprintf("AmVideo: %s\n", __func__);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int amDllVideoGetVBiosVersion(void *ctx, char *dest, size_t nchars)
|
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");
|
strcpy(dest, "01.02.03.04.05");
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue