Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
Index: firmware/target/arm/ipod/lcd-color_nano.c =================================================================== --- firmware/target/arm/ipod/lcd-color_nano.c (revision 28944) +++ firmware/target/arm/ipod/lcd-color_nano.c (working copy) @@ -32,9 +32,6 @@ #include "system.h" #include "hwcompat.h" -/*** macros ***/ -#define SWAP_INT(X,Y) {int tmp=X; X=Y; Y=tmp;} - /* LCD command codes for HD66789R */ #define LCD_CNTL_RAM_ADDR_SET 0x21 #define LCD_CNTL_WRITE_TO_GRAM 0x22 @@ -136,9 +133,11 @@ x1 = (y + height) - 1; /* max vert */ #elif CONFIG_LCD == LCD_IPODCOLOR y0 = y; /* start vert */ - x0 = (LCD_WIDTH - 1) - x; /* start horiz */ +// x0 = (LCD_WIDTH - 1) - x; /* start horiz */ + x0 = LCD_WIDTH - (x + width); /* start horiz */ y1 = (y + height) - 1; /* end vert */ - x1 = (x0 - width) + 1; /* end horiz */ +// x1 = (x0 - width) + 1; /* end horiz */ + x1 = (x0 + width) - 1; /* end horiz */ #endif /* setup the drawing region */ @@ -148,9 +147,6 @@ lcd_cmd_data(0x15, y1); /* end vert */ lcd_cmd_data(0x16, x1); /* end horiz */ } else { - if (y1 < y0) SWAP_INT(y0,y1) /* swap max horiz < start horiz */ - if (x1 < x0) SWAP_INT(x0,x1) /* swap max vert < start vert */ - /* max horiz << 8 | start horiz */ lcd_cmd_data(LCD_CNTL_HORIZ_RAM_ADDR_POS, (y1 << 8) | y0); /* max vert << 8 | start vert */ |