From 3d60a5678de7186015ad1a2461c15fcac6b1e898 Mon Sep 17 00:00:00 2001 From: John Hodge Date: Fri, 18 Jun 2010 16:46:14 +0800 Subject: [PATCH] no more debug plz --- Modules/Display/VESA/main.c | 2 -- 1 file changed, 2 deletions(-) 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; -- 2.20.1