You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-puzzle/amoebax/files/amoebax-0.2.1-clang.patch

15 lines
628 B

Fixes building with clang:
Gentoo-Bug: https://bugs.gentoo.org/739286
--- a/src/NewHighScoreState.cxx
+++ b/src/NewHighScoreState.cxx
@@ -396,7 +396,7 @@ NewHighScoreState::unicodeCharacterPress
// FIXME: We are only interessted with ASCII values.
if ( 0 == (code & 0xff80) )
{
- char character[2] = {toupper (static_cast<char>(code & 0x7f)), '\0'};
+ char character[2] = {static_cast<char>(toupper (static_cast<char>(code & 0x7f)), '\0')};
std::string::size_type characterPos =
m_CursorValues.find (std::string (character));
if ( std::string::npos != characterPos )