mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2024-11-14 10:17:38 +01:00
5aa9ad1e02
I know this is slightly redundant but we should stick to this pattern as we have multiple old games that do not use identical conf and gamestart files.
17 lines
474 B
Batchfile
17 lines
474 B
Batchfile
@echo off
|
|
cd /d %~dp0
|
|
|
|
if not exist dev mkdir dev
|
|
if not exist dev\e mkdir dev\e
|
|
if not exist dev\g mkdir dev\g
|
|
if not exist dev\nvram mkdir dev\nvram
|
|
if not exist dev\raw mkdir dev\raw
|
|
if not exist dev\raw\log mkdir dev\raw\log
|
|
if not exist dev\raw\fscache mkdir dev\raw\fscache
|
|
|
|
for /R prop\defaults %%D in (*.*) do (
|
|
if not exist dev\nvram\%%~nxD copy /y prop\defaults\%%~nxD dev\nvram
|
|
)
|
|
|
|
launcher -H 134217728 -K iidxhook8.dll bm2dx.dll --config iidxhook-26.conf %*
|