StarScream2109
Extreme Android User
i was wondering WHY DON'T WE HAVE THIS VERY USEFUL FEATURE!!!!!!! it'd make my life and everyone elses so much easier being able to touch the option instead of using the volume control buttons and the home button
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.

i was wondering WHY DON'T WE HAVE THIS VERY USEFUL FEATURE!!!!!!! it'd make my life and everyone elses so much easier being able to touch the option instead of using the volume control buttons and the home button
I would be willing to take the risk... our screen is large enough and it would be very useful... I have hundreds of files on my sdcard and every time I want to flash one I am forced to scroll through each file
Sent from my N860 using Tapatalk 2 Beta-5
Well mines better![]()
well, the only problem I have with building twrp is the BOARD_HAS_FLIPPED_SCREEN function in it, since our screen is inverted, the recovery shows on a flipped screen and the graphics are all screwed up, I already built twrp on my warp, had help on it from Dees_Troy, but neither of us could figure out WHY that function would not work. Ima try again, and this time with the 2.2 version of twrp.
if you make it your god because thats what we really needYour my heroif you make it your god because thats what we really need
Im trying to finish all these projects I got going on on this computer... too much going on with life atm, IE work, family, children, etc etc. Im saving the development for when I actually get a day off... x_x
keep up your amazing workWhen you say flipped... Like 180 degrees or like mirrored...? I don't know too much coding... But hey another set of eyes reading it couldn't hurt
wish i could help but im not much use being as i only have a phone no computer but hey if theres anything i can do please let me knowFlipped 180 but the controls on screen are the same as if it was flipped the right way so reboot is at the bottom of the screen but you must press the top of the screen to select it lol
I have already contacted Koush about it i'm just awaiting a reply from him. I wills see if he can add it. I know the graphics.c has some custom stuff but i doesn't let you set the has flipped screen setting.
#ifdef BOARD_HAS_FLIPPED_SCREEN
/* flip buffer 180 degrees for devices with physicaly inverted screens */
unsigned int i;
for (i = 1; i < (vi.xres * vi.yres); i++) {
unsigned short tmp = gr_mem_surface.data[i];
gr_mem_surface.data[i] = gr_mem_surface.data[(vi.xres * vi.yres * 2) - i];
gr_mem_surface.data[(vi.xres * vi.yres * 2) - i] = tmp;
}
#endif
#ifdef BOARD_HAS_FLIPPED_SCREEN
/* flip buffer 180 degrees for devices with physicaly inverted screens */
unsigned int i;
for (i = 1; i < (vi.xres * vi.yres); i++) {
unsigned short tmp = gr_mem_surface.data[i];
gr_mem_surface.data[i] = gr_mem_surface.data[(vi.xres * vi.yres * 2) - i];
gr_mem_surface.data[(vi.xres * vi.yres * 2) - i] = tmp;
}
#endif