From 6674489666e2a5ca2f12a1c1015cd0bf3bd36494 Mon Sep 17 00:00:00 2001 From: Vladimir Chtchetkine Date: Fri, 11 May 2012 05:47:46 -0700 Subject: Fix emulator's UI build When building emulator-ui, build fails complaining that android_startOpenglesRenderer implementation doesn't match routine declaration. Fixing that. Change-Id: I5f3f588969c1b4c9a59035f8abddb63cc6c917ad --- android/opengles.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'android') diff --git a/android/opengles.c b/android/opengles.c index 6f0556f..b265428 100644 --- a/android/opengles.c +++ b/android/opengles.c @@ -278,7 +278,7 @@ int android_initOpenglesEmulation(void) return -1; } -int android_startOpenglesRenderer(int width, int height, OnPostFunc onPost, void* onPostContext) +int android_startOpenglesRenderer(int width, int height) { return -1; } -- cgit v1.1