From 8315584dbe7d298d6df5f719d836dc703d7b278f Mon Sep 17 00:00:00 2001 From: Dniel97 Date: Sun, 6 Oct 2024 21:16:02 +0200 Subject: [PATCH] taiko: removed VFD --- taikohook/config.c | 1 - taikohook/config.h | 1 - taikohook/dllmain.c | 7 ------- 3 files changed, 9 deletions(-) diff --git a/taikohook/config.c b/taikohook/config.c index dd4c442..2eca9b2 100644 --- a/taikohook/config.c +++ b/taikohook/config.c @@ -45,5 +45,4 @@ void taiko_hook_config_load( network_config_load(&cfg->network, filename); bpreader_config_load(&cfg->reader, filename); usio_config_load(&cfg->usio, filename); - vfd_config_load(&cfg->vfd, filename); } diff --git a/taikohook/config.h b/taikohook/config.h index 173c74d..d0f94dd 100644 --- a/taikohook/config.h +++ b/taikohook/config.h @@ -19,7 +19,6 @@ struct taiko_hook_config { struct taiko_network_config network; struct bpreader_config reader; struct usio_config usio; - struct vfd_config vfd; }; void taiko_dll_config_load( diff --git a/taikohook/dllmain.c b/taikohook/dllmain.c index b1a00b9..9d56ed8 100644 --- a/taikohook/dllmain.c +++ b/taikohook/dllmain.c @@ -9,7 +9,6 @@ #include "board/bpreader.h" #include "board/qr.h" -#include "board/vfd.h" #include "amcus/amcus.h" @@ -62,12 +61,6 @@ static DWORD CALLBACK taiko_pre_startup(void) hr = qr_hook_init(&taiko_hook_cfg.qr, 5); - if (FAILED(hr)) { - ExitProcess(EXIT_FAILURE); - } - - hr = vfd_hook_init(&taiko_hook_cfg.vfd, 2); - if (FAILED(hr)) { ExitProcess(EXIT_FAILURE); }