--- nono/wx/wxapp.cpp 2026/04/29 17:05:08 1.1.1.11 +++ nono/wx/wxapp.cpp 2026/04/29 17:05:12 1.1.1.12 @@ -205,8 +205,8 @@ WXApp::ShowMonitorsName() } // サブウィンドウは機種情報から判断 for (int id = ID_SUBWIN_START; id <= ID_SUBWIN_END; id++) { - vmf_t feature = gMonitorManager->GetFeature(id); - if (gMainApp.HasVMFeature(feature)) { + VMCap vmcap = gMonitorManager->GetVMCap(id); + if (gMainApp.Has(vmcap)) { list.push_back(id); } } @@ -237,8 +237,8 @@ WXApp::SearchMonitorName(const char *nam } } else { // サブウィンドウは該当機種でなければ除外する - vmf_t feature = gMonitorManager->GetFeature(id); - if (gMainApp.HasVMFeature(feature) == false) { + VMCap vmcap = gMonitorManager->GetVMCap(id); + if (gMainApp.Has(vmcap) == false) { continue; } }