summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorNolan Check <Nolan.Check@gmail.com>2009-06-29 20:54:47 +0000
committerNolan Check <Nolan.Check@gmail.com>2009-06-29 20:54:47 +0000
commitdbe42dd755150fc8432ec732314303dfaf89f496 (patch)
treef5068575d5322dae31447ec4b52bf329718572f8 /Source/Core
parent37fe91bad1b7b2e8b40b1fabe771aea1c1a2f810 (diff)
Remove obsolete debug-assertions in VideoInterface. Hopefully fix screenshots.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3604 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Src/HW/VideoInterface.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/Core/Core/Src/HW/VideoInterface.cpp b/Source/Core/Core/Src/HW/VideoInterface.cpp
index 8d08f1273a..3a58eec06c 100644
--- a/Source/Core/Core/Src/HW/VideoInterface.cpp
+++ b/Source/Core/Core/Src/HW/VideoInterface.cpp
@@ -194,7 +194,7 @@ union UVIFBInfoRegister
{
// TODO: mask out lower 9bits/align to 9bits???
unsigned FBB : 24; // Base address of the framebuffer in external mem
- // TODO: do XOFF/POFF exist in bottom reg?
+ // POFF only seems to exist in the top reg. XOFF, unknown.
unsigned XOFF : 4; // Horizontal Offset of the left-most pixel within the first word of the fetched picture
unsigned POFF : 1; // Page offest: 1: fb address is (address>>5)
unsigned CLRPOFF : 3; // ? setting bit 31 clears POFF
@@ -1104,14 +1104,12 @@ void Update()
// eg. Animal Crossing gc have smth in TFBL.XOF bitfield.
// "XOF - Horizontal Offset of the left-most pixel within the first word of the fetched picture."
xfbAddr = GetXFBPointerTop_GC();
- _dbg_assert_msg_(VIDEOINTERFACE, xfbAddr, "Bad top XFB address");
}
else
{
NextXFBRender = 1;
// Previously checked m_XFBInfoTop.POFF then used m_XFBInfoBottom.FBB, try reverting if there are problems
xfbAddr = GetXFBPointerBottom_GC();
- _dbg_assert_msg_(VIDEOINTERFACE, xfbAddr, "Bad bottom XFB address");
yOffset = -1;
}