From 11465db9c19ec80dddd57e50de9bf0f381d918a4 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 16 Oct 2012 12:01:00 +0200 Subject: [PATCH] (Android) We now do everything natively (including video) - so we no longer need this --- driver.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/driver.c b/driver.c index 2c294865b3..952058ddeb 100644 --- a/driver.c +++ b/driver.c @@ -235,18 +235,14 @@ 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