mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 18:31:12 +02:00
memcpy -> memmove
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@1278 e54a6e83-5905-42d5-8d5c-058d10e6a962
Origin commit data
------------------
Branch: ni/coolstream
Commit: 85f5e1110d
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2011-03-09 (Wed, 09 Mar 2011)
------------------
This commit was generated by Migit
This commit is contained in:
@@ -423,11 +423,11 @@ bool CLCDDisplay::paintIcon(std::string filename, int x, int y, bool invert)
|
||||
}
|
||||
|
||||
void CLCDDisplay::dump_screen(raw_display_t *screen) {
|
||||
memcpy(screen, raw, sizeof(raw_display_t));
|
||||
memmove(screen, raw, sizeof(raw_display_t));
|
||||
}
|
||||
|
||||
void CLCDDisplay::load_screen(const raw_display_t * const screen) {
|
||||
memcpy(raw, screen, sizeof(raw_display_t));
|
||||
memmove(raw, screen, sizeof(raw_display_t));
|
||||
}
|
||||
|
||||
bool CLCDDisplay::load_png(const char * const filename)
|
||||
|
Reference in New Issue
Block a user