head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.4 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.2 pkgsrc-2025Q4-base:1.1; locks; strict; comment @// @; 1.1 date 2025.09.29.14.06.05; author nia; state Exp; branches; next ; commitid QPU4EPEb5pBxeCcG; desc @@ 1.1 log @amoebax: Initial import. Verified to build on SunOS, Linux, NetBSD, and FreeBSD (with clang) by drecklypkg ci. Amoebax is a cute and addictive action-puzzle game similar to "Puyo Puyo". Due an awful mutation, some amoeba's species have started to multiply until they take the world if you can't stop them. Fortunately the mutation made then too unstable and lining up four or more will make them disappear. @ text @$NetBSD$ Build fixes for modern clang; via FreeBSD Ports --- src/NewHighScoreState.cxx.orig 2009-02-28 17:38:34.000000000 +0000 +++ 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(code & 0x7f)), '\0'}; + char character[2] = {static_cast(toupper (static_cast(code & 0x7f)), '\0')}; std::string::size_type characterPos = m_CursorValues.find (std::string (character)); if ( std::string::npos != characterPos ) @