From: grumbel Date: Wed, 25 Nov 2009 16:51:46 +0000 (+0000) Subject: SDL_main() is not supposed to be written by us, see: X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=084a845702247efdd2f4e78b6251487646b6f4b5;p=supertux.git SDL_main() is not supposed to be written by us, see: http://www.libsdl.org/faq.php?action=listentries&category=7#55 git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6088 837edb03-e0f3-0310-88ca-d4d4e8b29345 --- diff --git a/src/main.cpp b/src/main.cpp index 25aaf701c..8988652dc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -15,11 +15,10 @@ // along with this program. If not, see . #include -#undef main #include "supertux/main.hpp" -int SDL_main(int argc, char** argv) +int main(int argc, char** argv) { return Main().main(argc, argv); }