Fixed the last remaining warning.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12128 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2005-03-29 17:31:31 +00:00
parent a398854794
commit b87be17fc8

View File

@ -20,6 +20,7 @@
#include <Message.h> #include <Message.h>
#include <MessageRunner.h> #include <MessageRunner.h>
#include <Region.h> #include <Region.h>
#include <Screen.h>
#include <Accelerant.h> #include <Accelerant.h>
#include <graphic_driver.h> #include <graphic_driver.h>
@ -748,7 +749,7 @@ AccelerantHWInterface::_CopyToFront(uint8* src, uint32 srcBPR,
// has a class that handles this, something so useful // has a class that handles this, something so useful
// should be moved to a more public place. // should be moved to a more public place.
// TODO: assumes BGR order again // TODO: assumes BGR order again
/*BScreen screen; BScreen screen;
for (; y <= bottom; y++) { for (; y <= bottom; y++) {
uint8* srcHandle = src; uint8* srcHandle = src;
uint8* dstHandle = dst; uint8* dstHandle = dst;
@ -762,7 +763,7 @@ AccelerantHWInterface::_CopyToFront(uint8* src, uint32 srcBPR,
} }
dst += dstBPR; dst += dstBPR;
src += srcBPR; src += srcBPR;
}*/ }
break; break;
} }
case B_GRAY8: { case B_GRAY8: {