summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/iteagle.cpp
diff options
context:
space:
mode:
author Ted Green <tedgreen99@protonmail.com>2017-09-13 14:00:53 -0600
committer Ted Green <tedgreen99@protonmail.com>2017-09-13 14:05:44 -0600
commit13abab0600c10c0e25d8a37190c7bb4883ad1870 (patch)
tree48244541a731296b40aae2c0ac5b2f6b519544a6 /src/mame/drivers/iteagle.cpp
parent42f5165c08d5cff9204225c893b35b34044948d5 (diff)
iteagle: Set medium resolution as default for virtpool and remove MACHINE_IMPERFECT_GRAPHICS.
Diffstat (limited to 'src/mame/drivers/iteagle.cpp')
-rw-r--r--src/mame/drivers/iteagle.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/iteagle.cpp b/src/mame/drivers/iteagle.cpp
index 74bb9477c85..1c690d8726d 100644
--- a/src/mame/drivers/iteagle.cpp
+++ b/src/mame/drivers/iteagle.cpp
@@ -357,10 +357,10 @@ static INPUT_PORTS_START( virtpool )
PORT_INCLUDE( iteagle )
PORT_MODIFY("SW5")
- PORT_DIPNAME( 0x3, 0x3, "Resolution" )
+ PORT_DIPNAME( 0x3, 0x1, "Resolution" ) // Setting to low resolution will hang the game
PORT_DIPSETTING(0x1, "Medium" )
- PORT_DIPSETTING(0x0, "Low" )
- PORT_DIPSETTING(0x3, "VGA" )
+ PORT_DIPSETTING(0x0, "Low (Hangs)" )
+ PORT_DIPSETTING(0x3, "VGA (Buggy)" )
PORT_MODIFY("IN1")
PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME( "English" )
@@ -656,7 +656,7 @@ ROM_END
*************************************/
GAME( 2000, iteagle, 0, iteagle, iteagle, iteagle_state, 0, ROT0, "Incredible Technologies", "Eagle BIOS", MACHINE_IS_BIOS_ROOT )
-GAME( 1998, virtpool, iteagle, virtpool, virtpool, iteagle_state, 0, ROT0, "Incredible Technologies", "Virtual Pool", MACHINE_IMPERFECT_GRAPHICS | MACHINE_SUPPORTS_SAVE )
+GAME( 1998, virtpool, iteagle, virtpool, virtpool, iteagle_state, 0, ROT0, "Incredible Technologies", "Virtual Pool", MACHINE_SUPPORTS_SAVE )
GAME( 2002, carnking, iteagle, carnking, bbh, iteagle_state, 0, ROT0, "Incredible Technologies", "Carnival King (v1.00.11)", MACHINE_SUPPORTS_SAVE )
GAME( 2000, gtfore01, iteagle, gtfore01, iteagle, iteagle_state, 0, ROT0, "Incredible Technologies", "Golden Tee Fore! (v1.00.25)", MACHINE_SUPPORTS_SAVE )
GAME( 2001, gtfore02, iteagle, gtfore02, iteagle, iteagle_state, 0, ROT0, "Incredible Technologies", "Golden Tee Fore! 2002 (v2.01.06)", MACHINE_SUPPORTS_SAVE )