summaryrefslogtreecommitdiff
path: root/src/nv_crtc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nv_crtc.c')
-rw-r--r--src/nv_crtc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nv_crtc.c b/src/nv_crtc.c
index fe06020..5b646d0 100644
--- a/src/nv_crtc.c
+++ b/src/nv_crtc.c
@@ -462,7 +462,7 @@ void nv_crtc_calc_state_ext(
}
- CursorStart = pNv->Cursor->offset - pNv->VRAMPhysical;
+ CursorStart = pNv->Cursor->offset;
regp->CRTC[NV_VGA_CRTCX_CURCTL0] = 0x80 | (CursorStart >> 17);
regp->CRTC[NV_VGA_CRTCX_CURCTL1] = (CursorStart >> 11) << 2;
@@ -1280,7 +1280,7 @@ NVCrtcSetBase (xf86CrtcPtr crtc, int x, int y)
CARD32 start = 0;
start += ((y * pScrn->displayWidth + x) * (pLayout->bitsPerPixel/8));
- start += (pNv->FB->offset - pNv->VRAMPhysical);
+ start += pNv->FB->offset;
nvWriteCRTC(pNv, nv_crtc->crtc, NV_CRTC_START, start);