troubleshooter: address common issues in iidx and popn (#396)

## Description of change
iidx: 9on12 crashes iidx31+

popn: special message for createdevice failures (resolution issue)

## Testing
manually test both cases
This commit is contained in:
bicarus-dev
2025-10-04 15:21:33 -07:00
committed by GitHub
parent 8e2985d8d0
commit 8cc00c371a
2 changed files with 36 additions and 10 deletions
+8
View File
@@ -405,6 +405,14 @@ namespace games::iidx {
// init cfgmgr32 hooks
cfgmgr32hook_init(avs::game::DLL_INSTANCE);
// report common errors on iidx31 and above
if (avs::game::is_ext(2023091500, MAXINT) && GRAPHICS_9_ON_12_STATE == DX9ON12_FORCE_ON) {
deferredlogs::defer_error_messages({
"common incompatibility with DX 9on12 + IIDX 31 and above",
" IIDX31+ is known to be incompatible with DX 9on12, leading to blank screen or crashes"
});
}
}
void IIDXGame::pre_attach() {