From d4639706abcb52d2cc0f90a1eb73adfb0a9cea11 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 2 May 2021 21:19:30 +0100 Subject: games-puzzle/xwelltris: tweak for gcc-11 Reported-by: Agostino Sarubbo Closes: https://bugs.gentoo.org/739318 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Sergei Trofimovich --- games-puzzle/xwelltris/files/xwelltris-1.0.1-gcc-11.patch | 11 +++++++++++ games-puzzle/xwelltris/xwelltris-1.0.1.ebuild | 1 + 2 files changed, 12 insertions(+) create mode 100644 games-puzzle/xwelltris/files/xwelltris-1.0.1-gcc-11.patch (limited to 'games-puzzle/xwelltris') diff --git a/games-puzzle/xwelltris/files/xwelltris-1.0.1-gcc-11.patch b/games-puzzle/xwelltris/files/xwelltris-1.0.1-gcc-11.patch new file mode 100644 index 000000000000..0398bfec4359 --- /dev/null +++ b/games-puzzle/xwelltris/files/xwelltris-1.0.1-gcc-11.patch @@ -0,0 +1,11 @@ +--- a/src/sdl/sdlwelldrawing.cxx ++++ b/src/sdl/sdlwelldrawing.cxx +@@ -72,7 +72,7 @@ void SDLWellDrawingEngine::init(int inum_fields, int idx, int idy, + + fields[i]=SDL_DisplayFormat(surface); + SDL_FreeSurface(surface); +- if(fields[i]>0) ++ if(fields[i]) + clear_field(i); + } + bg_color=colors[BackColor]; diff --git a/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild b/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild index 36c39e67014c..11369637b0b0 100644 --- a/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild +++ b/games-puzzle/xwelltris/xwelltris-1.0.1.ebuild @@ -25,6 +25,7 @@ RDEPEND=" PATCHES=( # Look in ${EPREFIX}/var/lib/xwelltris for score file "${FILESDIR}"/${PN}-1.0.1-scorefile-dir.patch + "${FILESDIR}"/${PN}-1.0.1-gcc-11.patch ) src_prepare() { -- cgit v1.2.3-65-gdbad