summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <cuavas@users.noreply.github.com>2016-03-09 12:57:29 +1100
committer Vas Crabb <cuavas@users.noreply.github.com>2016-03-09 12:57:29 +1100
commitffe28b99ab22b627c3679b73b363738e38baa5bb (patch)
treeab9befb63eb4dba9f54c363b8decfa2bd4e61054
parentee93853ac6aa8a17183d1d9b528aeee327fc165f (diff)
parent9420cf631abf42aedd0ec6a86041ff36826c495f (diff)
Merge pull request #702 from Happy-yappH/master
N64: Non-interlaced field index should be fixed at zero.
-rw-r--r--src/mame/video/n64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/n64.cpp b/src/mame/video/n64.cpp
index b80d22785ad..85033978fca 100644
--- a/src/mame/video/n64.cpp
+++ b/src/mame/video/n64.cpp
@@ -174,7 +174,7 @@ void n64_periphs::video_update(bitmap_rgb32 &bitmap)
}
else
{
- field = 1;
+ field = 0;
}
switch(vi_control & 0x3)