1
1
mirror of synced 2025-01-21 09:43:42 +01:00
This commit is contained in:
ShikyC 2024-01-04 18:26:45 -08:00
parent ca6959c8e8
commit d5f35642cb

View File

@ -326,8 +326,10 @@ Init () {
if (drum) drumWaitPeriod = readConfigInt (drum, "wait_period", drumWaitPeriod);
auto taikoController = openConfigSection (config, "controller");
if (taikoController) {
printf("Using analog input mode. All other input has been disabled.\n");
useTaikoController = readConfigBool (taikoController, "analog", useTaikoController);
if (useTaikoController) {
printf("Using analog input mode. All other input has been disabled.\n");
}
}
toml_free (config);
}