From: Tobias Gläßer Date: Mon, 10 May 2004 20:37:59 +0000 (+0000) Subject: fixed missing semicolon X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=b7b16dd7be85cc2d8a7dfaa7800ce01f2646c879;p=supertux.git fixed missing semicolon SVN-Revision: 1086 --- diff --git a/src/title.cpp b/src/title.cpp index c54652dbb..d31ce956c 100644 --- a/src/title.cpp +++ b/src/title.cpp @@ -191,7 +191,7 @@ void draw_demo(GameSession* session, double frame_ratio) // Wrap around at the end of the level back to the beginnig if(plevel->width * 32 - 320 < tux->base.x) { - tux->level_begin() + tux->level_begin(); scroll_x = 0; }