This commit is contained in:
dborth 2010-11-17 07:26:52 +00:00
parent 93af3a3274
commit cd2a43093b

View File

@ -573,8 +573,12 @@ InitGCVideo ()
VIDEO_Init(); VIDEO_Init();
// Allocate the video buffers // Allocate the video buffers
xfb[0] = (u32 *) MEM_K0_TO_K1 (memalign(32, 640*574*2)); xfb[0] = (u32 *) memalign(32, 640*574*2);
xfb[1] = (u32 *) MEM_K0_TO_K1 (memalign(32, 640*574*2)); xfb[1] = (u32 *) memalign(32, 640*574*2);
DCInvalidateRange(xfb[0], 640*574*2);
DCInvalidateRange(xfb[1], 640*574*2);
xfb[0] = (u32 *) MEM_K0_TO_K1 (xfb[0]);
xfb[1] = (u32 *) MEM_K0_TO_K1 (xfb[1]);
GXRModeObj *rmode = FindVideoMode(); GXRModeObj *rmode = FindVideoMode();
SetupVideoMode(rmode); SetupVideoMode(rmode);