mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 03:29:22 +01:00
This commit is contained in:
parent
ffa827d43c
commit
df2392c736
@ -547,8 +547,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);
|
||||||
|
Loading…
Reference in New Issue
Block a user