head 1.2; access; symbols pkgsrc-2019Q3:1.1.0.72 pkgsrc-2019Q3-base:1.1 pkgsrc-2019Q2:1.1.0.70 pkgsrc-2019Q2-base:1.1 pkgsrc-2019Q1:1.1.0.68 pkgsrc-2019Q1-base:1.1 pkgsrc-2018Q4:1.1.0.66 pkgsrc-2018Q4-base:1.1 pkgsrc-2018Q3:1.1.0.64 pkgsrc-2018Q3-base:1.1 pkgsrc-2018Q2:1.1.0.62 pkgsrc-2018Q2-base:1.1 pkgsrc-2018Q1:1.1.0.60 pkgsrc-2018Q1-base:1.1 pkgsrc-2017Q4:1.1.0.58 pkgsrc-2017Q4-base:1.1 pkgsrc-2017Q3:1.1.0.56 pkgsrc-2017Q3-base:1.1 pkgsrc-2017Q2:1.1.0.52 pkgsrc-2017Q2-base:1.1 pkgsrc-2017Q1:1.1.0.50 pkgsrc-2017Q1-base:1.1 pkgsrc-2016Q4:1.1.0.48 pkgsrc-2016Q4-base:1.1 pkgsrc-2016Q3:1.1.0.46 pkgsrc-2016Q3-base:1.1 pkgsrc-2016Q2:1.1.0.44 pkgsrc-2016Q2-base:1.1 pkgsrc-2016Q1:1.1.0.42 pkgsrc-2016Q1-base:1.1 pkgsrc-2015Q4:1.1.0.40 pkgsrc-2015Q4-base:1.1 pkgsrc-2015Q3:1.1.0.38 pkgsrc-2015Q3-base:1.1 pkgsrc-2015Q2:1.1.0.36 pkgsrc-2015Q2-base:1.1 pkgsrc-2015Q1:1.1.0.34 pkgsrc-2015Q1-base:1.1 pkgsrc-2014Q4:1.1.0.32 pkgsrc-2014Q4-base:1.1 pkgsrc-2014Q3:1.1.0.30 pkgsrc-2014Q3-base:1.1 pkgsrc-2014Q2:1.1.0.28 pkgsrc-2014Q2-base:1.1 pkgsrc-2014Q1:1.1.0.26 pkgsrc-2014Q1-base:1.1 pkgsrc-2013Q4:1.1.0.24 pkgsrc-2013Q4-base:1.1 pkgsrc-2013Q3:1.1.0.22 pkgsrc-2013Q3-base:1.1 pkgsrc-2013Q2:1.1.0.20 pkgsrc-2013Q2-base:1.1 pkgsrc-2013Q1:1.1.0.18 pkgsrc-2013Q1-base:1.1 pkgsrc-2012Q4:1.1.0.16 pkgsrc-2012Q4-base:1.1 pkgsrc-2012Q3:1.1.0.14 pkgsrc-2012Q3-base:1.1 pkgsrc-2012Q2:1.1.0.12 pkgsrc-2012Q2-base:1.1 pkgsrc-2012Q1:1.1.0.10 pkgsrc-2012Q1-base:1.1 pkgsrc-2011Q4:1.1.0.8 pkgsrc-2011Q4-base:1.1 pkgsrc-2011Q3:1.1.0.6 pkgsrc-2011Q3-base:1.1 pkgsrc-2011Q2:1.1.0.4 pkgsrc-2011Q2-base:1.1 pkgsrc-2011Q1:1.1.0.2 pkgsrc-2011Q1-base:1.1; locks; strict; comment @// @; 1.2 date 2019.11.11.22.03.01; author maya; state dead; branches; next 1.1; commitid Tk4A01jjMoRPWtKB; 1.1 date 2011.02.23.10.20.26; author adam; state Exp; branches; next ; desc @@ 1.2 log @enigma: update to 1.21. C++11 compatibility patches from amdmi3@@freebsd. Intended to address PR pkg/54597: games/enigma distfile contains broken PNG images Changes in Version 1.21 ======================= User-Visible changes -------------------- - New translations: Croatian, Czech, Danish, Scottish-Gaelic, and Slovak - updated remaining translations - fixed many English typos - Russian reference manual - rollover for options and rating buttons - 51 new Enigma levels (now a total of 984 main-pack levels, plus 21 tutorials) Internal changes ---------------- - further rewrites of old-API levels to new API (only 212 old-API left) - many bug fixes Changes in Version 1.20 ======================= User-Visible changes -------------------- - added ingame music by Taztunes (deactivated by default) - removed "over par" notification by general request - 78 new Enigma levels (now a total of 956 levels, plus 21 tutorials) - replaced old Sokoban levels by 1077 imported Sokoball levels - 95 new Pentomino levels Internal changes ---------------- - many bug fixes Changes in Version 1.10 (Released only for level authors and testers) ======================= User-Visible changes -------------------- - new objects: wires, st_barrier, opal oxyds, drunken thiefs, st_yinyang, st_dispenser_extralife, fl_scales, framed floors, it_meditation_volcano, it_meditation_caldera, puzzle singletons, mirror sheets, bigbricks in wood and blue-sand decor, cracks with water beneath, black pearls, and st_rawglass_quad - vastly extended st_window, hollow puzzles, it_strip - color coding for keys and locks - four new oxyd colors and shuffle oxyds - many improved images for higher resolutions - new images for coins - extra lifes now look like batteries to not confuse them with ac_pearl - tutorial level for st_chess Internal changes ---------------- - new API, involving a reengineering of many objects, a consistent naming scheme for all objects, and a rewrite of almost every level - new libraries: liblua, libmath, libmap to ease programming of complex levels libpuzzle, libtrain to ease programming of large puzzles and trains libimport, libpento, libsoko to generate or import complete levels from different formats - internal maze generation - internal flood generation - improved it_rubberband, st_surprise and it_surprise - itemfreeze stone now is an own object st_ice @ text @$NetBSD: patch-lib-src_enigma-core_ecl_font.cc,v 1.1 2011/02/23 10:20:26 adam Exp $ Fix comparison. --- lib-src/enigma-core/ecl_font.cc.orig 2011-02-22 13:18:46.000000000 +0000 +++ lib-src/enigma-core/ecl_font.cc @@@@ -114,7 +114,7 @@@@ BitmapFont::BitmapFont(Surface *s, const char_rects[c].y = 0; char_rects[c].h = s->height(); advance[c] = adv; - if (adv = 0) + if (adv == 0) std::cout << "BitFont 0\n"; } } @ 1.1 log @Changes 1.01-r1914: Fix building on 32- and 64-bit machines. @ text @d1 1 a1 1 $NetBSD$ @