View Single Post
Posts: 303 | Thanked: 146 times | Joined on Aug 2009
#5
Thanks a lot!

Can you please try to put #define __ANDROID__ somewhere at the very beginning, and just comment out the lines like:

Code:
#ifdef __ANDROID__
    Android_JNI_GetAccelerometerValues(last_accel_values);
    last_got_accel=SDL_GetTicks();
#endif
Also, in get_config_path() just change it to:
Code:
void get_configh_path()
{
	strcpy(config_path,getenv("HOME"));
	mkdir(config_path);
}
Maybe if you do that it will be full screen and touch will work.
 

The Following User Says Thank You to Radu For This Useful Post: