1
0
Fork 0
forked from len0rd/rockbox

Pass the framebuffer to the service in the constructor rather than later from native code.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28411 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-10-31 12:11:14 +00:00
parent 2d05d2f9da
commit bf63f24168
2 changed files with 2 additions and 5 deletions

View file

@ -77,10 +77,6 @@ void lcd_init_device(void)
RockboxFramebuffer_class,
"java_lcd_update_rect",
"(IIII)V");
jmethodID fbsetter = e->GetMethodID(env_ptr,RockboxService_class,
"set_fb", "(Lorg/rockbox/RockboxFramebuffer;)V");
e->CallVoidMethod(env_ptr, RockboxService_instance, fbsetter, RockboxFramebuffer_instance);
display_on = true;
}