diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-11-22 01:15:31 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-11-22 01:15:31 +0000 |
| commit | 49a0a945ac5ee6598a2ff15c3b806e5fa0a727be (patch) | |
| tree | 2e73c47d0eebbcadd87accf2e80fe3796565a9b2 /apps/misc.c | |
| parent | b51f7dfc9b507ab9db12fe90b2ddad708f435e06 (diff) | |
| download | rockbox-49a0a945ac5ee6598a2ff15c3b806e5fa0a727be.zip rockbox-49a0a945ac5ee6598a2ff15c3b806e5fa0a727be.tar.gz rockbox-49a0a945ac5ee6598a2ff15c3b806e5fa0a727be.tar.bz2 rockbox-49a0a945ac5ee6598a2ff15c3b806e5fa0a727be.tar.xz | |
Win32 simulator now supports iPod Color. Fixed screendump() to correctly work for iPod simulators on big endian machines. Removed duplicate button definitions.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8035 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.c')
| -rw-r--r-- | apps/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/misc.c b/apps/misc.c index 152914e..8525904 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -381,7 +381,7 @@ void screen_dump(void) { #if (LCD_PIXELFORMAT == RGB565SWAPPED) /* iPod LCD data is big endian although the CPU is not */ - *dst++ = swap16(*src++); + *dst++ = htobe16(*src++); #else *dst++ = htole16(*src++); #endif |