Update of /cvsroot/gc-linux/libgx/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18341/src
Modified Files:
gx.c
Log Message:
Changed CopyDst to use xfbHeight and not efbHeight
Index: gx.c
===================================================================
RCS file: /cvsroot/gc-linux/libgx/src/gx.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- gx.c 1 Nov 2004 02:32:45 -0000 1.4
+++ gx.c 1 Nov 2004 02:58:24 -0000 1.5
@@ -383,7 +383,7 @@
GX_SetCopyClear((GXColor)GX_DEFAULT_BG,0x00ffffff);
GX_SetDispCopySrc(0,0,640,pgxi->efbHeight);
- GX_SetDispCopyDst(640,pgxi->efbHeight);
+ GX_SetDispCopyDst(640,pgxi->xfbHeight);
GX_SetDispCopyYScale((f32)pgxi->xfbHeight / (f32)pgxi->efbHeight);
GX_SetCopyClamp(GX_CLAMP_TOP|GX_CLAMP_BOTTOM);
GX_SetCopyFilter(GX_FALSE,NULL,GX_FALSE,NULL);
|