diff options
Diffstat (limited to 'games-arcade/performous/files/performous-1.0-gcc52.patch')
-rw-r--r-- | games-arcade/performous/files/performous-1.0-gcc52.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/games-arcade/performous/files/performous-1.0-gcc52.patch b/games-arcade/performous/files/performous-1.0-gcc52.patch new file mode 100644 index 000000000000..dc3eb6b6d125 --- /dev/null +++ b/games-arcade/performous/files/performous-1.0-gcc52.patch @@ -0,0 +1,11 @@ +--- game/songparser.hh.old 2016-04-19 21:57:29.594132735 +0200 ++++ game/songparser.hh 2016-04-19 21:57:55.736682808 +0200 +@@ -33,7 +33,7 @@ + Song& m_song; + std::stringstream m_ss; + unsigned int m_linenum; +- bool getline(std::string& line) { ++m_linenum; return std::getline(m_ss, line);} ++ bool getline(std::string& line) { ++m_linenum; return !std::getline(m_ss, line).fail();} + bool m_relative; + double m_gap; + double m_bpm; |