From: John Hodge Date: Fri, 18 Jun 2010 08:46:14 +0000 (+0800) Subject: no more debug plz X-Git-Tag: rel0.06~147 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=3d60a5678de7186015ad1a2461c15fcac6b1e898;p=tpg%2Facess2.git no more debug plz --- diff --git a/Modules/Display/VESA/main.c b/Modules/Display/VESA/main.c index 9d484320..d3beb1f7 100644 --- a/Modules/Display/VESA/main.c +++ b/Modules/Display/VESA/main.c @@ -482,7 +482,6 @@ void Vesa_2D_Blit(void *Ent, Uint16 DstX, Uint16 DstY, Uint16 SrcX, Uint16 SrcY, if( dst > src ) { // Reverse copy - Debug("Reverse scroll"); dst += H*scrnpitch; src += H*scrnpitch; while( H -- ) { @@ -496,7 +495,6 @@ void Vesa_2D_Blit(void *Ent, Uint16 DstX, Uint16 DstY, Uint16 SrcX, Uint16 SrcY, } else { // Normal copy is OK - Debug("memcpy scroll"); while( H -- ) { memcpy((void*)gpVesa_Framebuffer + dst, (void*)gpVesa_Framebuffer + src, W*sizeof(Uint32)); dst += scrnpitch;