From 35644a66e0ef4119c20ec5fa35538b7630d79c6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Thu, 19 Oct 2017 10:48:25 +0200 Subject: [PATCH] Fix android build --- src/openrct2-ui/Ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/Ui.cpp b/src/openrct2-ui/Ui.cpp index 0c31fcb529..c859a1690f 100644 --- a/src/openrct2-ui/Ui.cpp +++ b/src/openrct2-ui/Ui.cpp @@ -70,7 +70,7 @@ int main(int argc, const char * * argv) #ifdef __ANDROID__ extern "C" { -int SDL_main(int argc, char *argv[]) +int SDL_main(int argc, const char *argv[]) { return main(argc, argv); }