mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(Android) Video init/deinit will only be invoked frm Java side/
surface - so ifndef it out for ANDROID
This commit is contained in:
parent
9a38d021c2
commit
7f0f6bc0a7
1 changed files with 4 additions and 0 deletions
4
driver.c
4
driver.c
|
@ -235,14 +235,18 @@ void init_drivers(void)
|
|||
{
|
||||
adjust_system_rates();
|
||||
|
||||
#ifndef ANDROID
|
||||
init_video_input();
|
||||
#endif
|
||||
init_audio();
|
||||
}
|
||||
|
||||
void uninit_drivers(void)
|
||||
{
|
||||
uninit_audio();
|
||||
#ifndef ANDROID
|
||||
uninit_video_input();
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef HAVE_DYLIB
|
||||
|
|
Loading…
Add table
Reference in a new issue