From 67135b44296bfc466d84d647872b2dccbb715c9c Mon Sep 17 00:00:00 2001 From: Volker Ruppert Date: Mon, 18 Jun 2018 20:26:51 +0000 Subject: [PATCH] Fixed wrong model string caused by typo. --- bochs/iodev/display/banshee.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bochs/iodev/display/banshee.cc b/bochs/iodev/display/banshee.cc index 0b354a72c..4b1e4a168 100644 --- a/bochs/iodev/display/banshee.cc +++ b/bochs/iodev/display/banshee.cc @@ -148,7 +148,7 @@ void bx_banshee_c::init_model(void) DEV_register_pci_handlers2(this, &s.devfunc, BX_PLUGIN_VOODOO, model, is_agp); init_pci_conf(0x121a, 0x0003, 0x01, 0x030000, 0x00, BX_PCI_INTA); } else if (s.model == VOODOO_3) { - if (is_agp) { + if (!is_agp) { strcpy(model, "Experimental 3dfx Voodoo 3 PCI"); } else { strcpy(model, "Experimental 3dfx Voodoo 3 AGP");