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/xye/files/xye-0.12.2-fix-c++14.patch

15 lines
502 B

Add explicit cast to silence C++14 -Wnarrowing conversion warnings.
See also: https://bugs.gentoo.org/show_bug.cgi?id=600298
--- a/src/xsb_level.cpp
+++ b/src/xsb_level.cpp
@@ -784,7 +784,7 @@
bool FromXyeDFS(int* mem, unsigned char x, unsigned char y)
{
- static const unsigned char dx[4] = {0,0,-1,1}, dy[4] = {-1,1,0,0};
+ static const unsigned char dx[4] = {0,0,(unsigned char)-1,1}, dy[4] = {(unsigned char)-1,1,0,0};
int &res = mem[y*XYE_HORZ+x];
if( res==0)
{