From 4a333d0b138f20429b966fac78ecad074561617e Mon Sep 17 00:00:00 2001 From: 17cef301cbf0c9bbe9e0c5a946206d54079429d7 <17cef301cbf0c9bbe9e0c5a946206d54079429d7@redacted> Date: Mon, 19 Dec 2022 23:19:48 +0000 Subject: [PATCH] Fixed gamestart.bat files for Chinese IIDX styles Chinese IIDX styles will hang if bemanitools can't mount the dev\\nvram and dev\\raw folders. This simply adds commands to their gamestart.bat files to create those directories if they don't exist, preventing the game from hanging. --- dist/iidx/gamestart-18-cn.bat | 3 +++ dist/iidx/gamestart-20-cn.bat | 3 +++ 2 files changed, 6 insertions(+) diff --git a/dist/iidx/gamestart-18-cn.bat b/dist/iidx/gamestart-18-cn.bat index 4657184..53d9822 100644 --- a/dist/iidx/gamestart-18-cn.bat +++ b/dist/iidx/gamestart-18-cn.bat @@ -11,4 +11,7 @@ if not exist e\avs_conf\CONF mkdir e\avs_conf\CONF if not exist e\avs_conf\CONF\NVRAM mkdir e\avs_conf\CONF\NVRAM if not exist e\avs_conf\CONF\RAW mkdir e\avs_conf\CONF\RAW +if not exist dev\nvram mkdir dev\nvram +if not exist dev\raw mkdir dev\raw + inject iidxhook4-cn.dll bm2dx.exe -D --config iidxhook-18-cn.conf %* diff --git a/dist/iidx/gamestart-20-cn.bat b/dist/iidx/gamestart-20-cn.bat index eb46b1e..c54d056 100644 --- a/dist/iidx/gamestart-20-cn.bat +++ b/dist/iidx/gamestart-20-cn.bat @@ -11,4 +11,7 @@ if not exist e\avs_conf\CONF mkdir e\avs_conf\CONF if not exist e\avs_conf\CONF\NVRAM mkdir e\avs_conf\CONF\NVRAM if not exist e\avs_conf\CONF\RAW mkdir e\avs_conf\CONF\RAW +if not exist dev\nvram mkdir dev\nvram +if not exist dev\raw mkdir dev\raw + inject iidxhook5-cn.dll bm2dx.exe -D --config iidxhook-20-cn.conf %*