mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-09-17 18:33:41 +02:00
memcpy -> memmove
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1278 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -78,7 +78,7 @@ void blit2FB(void *fbbuff,
|
||||
unsigned int stride = CFrameBuffer::getInstance()->getStride();
|
||||
|
||||
for(i = 0; i < yc; i++){
|
||||
memcpy(lfb+(i+yoffs)*stride+xoffs*4, ip + (i+yp)*pic_xs+xp, xc*4);
|
||||
memmove(lfb+(i+yoffs)*stride+xoffs*4, ip + (i+yp)*pic_xs+xp, xc*4);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user