This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.so | |
*.os | |
*~ | |
*.pyc | |
/example_wrap.cc | |
/example.py | |
/.sconsign.dblite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/supertux/game_session.cpp b/src/supertux/game_session.cpp | |
index 23cd7b201..d1d5cf838 100644 | |
--- a/src/supertux/game_session.cpp | |
+++ b/src/supertux/game_session.cpp | |
@@ -247,7 +247,10 @@ GameSession::check_end_conditions() | |
void | |
GameSession::draw(DrawingContext& context) | |
{ | |
- currentsector->draw(context); | |
+ for(int i = 0; i < 2; ++i) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <vector> | |
#include <iostream> | |
class Foo | |
{ | |
public: | |
std::vector<int> m_value; | |
Foo() : m_value(10) {} |