summaryrefslogtreecommitdiff
path: root/firmware/target/hosted/android/system-android.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/hosted/android/system-android.c')
-rw-r--r--firmware/target/hosted/android/system-android.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/firmware/target/hosted/android/system-android.c b/firmware/target/hosted/android/system-android.c
index 16c6973474..1fb69b3465 100644
--- a/firmware/target/hosted/android/system-android.c
+++ b/firmware/target/hosted/android/system-android.c
@@ -32,8 +32,8 @@ void system_init(void) { }
32 32
33/* global fields for use with various JNI calls */ 33/* global fields for use with various JNI calls */
34JNIEnv *env_ptr; 34JNIEnv *env_ptr;
35jobject RockboxActivity_instance; 35jobject RockboxService_instance;
36jclass RockboxActivity_class; 36jclass RockboxService_class;
37 37
38uintptr_t *stackbegin; 38uintptr_t *stackbegin;
39uintptr_t *stackend; 39uintptr_t *stackend;
@@ -41,7 +41,7 @@ uintptr_t *stackend;
41extern int main(void); 41extern int main(void);
42/* this is the entry point of the android app initially called by jni */ 42/* this is the entry point of the android app initially called by jni */
43JNIEXPORT void JNICALL 43JNIEXPORT void JNICALL
44Java_org_rockbox_RockboxActivity_main(JNIEnv *env, jobject this) 44Java_org_rockbox_RockboxService_main(JNIEnv *env, jobject this)
45{ 45{
46 /* hack!!! we can't have a valid stack pointer otherwise. 46 /* hack!!! we can't have a valid stack pointer otherwise.
47 * but we don't really need it anyway, thread.c only needs it 47 * but we don't really need it anyway, thread.c only needs it
@@ -53,7 +53,7 @@ Java_org_rockbox_RockboxActivity_main(JNIEnv *env, jobject this)
53 volatile uintptr_t stack = 0; 53 volatile uintptr_t stack = 0;
54 stackbegin = stackend = (uintptr_t*) &stack; 54 stackbegin = stackend = (uintptr_t*) &stack;
55 env_ptr = env; 55 env_ptr = env;
56 RockboxActivity_instance = this; 56 RockboxService_instance = this;
57 RockboxActivity_class = (*env)->GetObjectClass(env, this); 57 RockboxService_class = (*env)->GetObjectClass(env, this);
58 main(); 58 main();
59} 59}