alexdantas / nSnake

The classic snake game with textual interface
http://nsnake.alexdantas.net
GNU General Public License v3.0
199 stars 57 forks source link

ESCDELAY = 25; : lvalue required as left operand of assignment #31

Open donzef opened 5 years ago

donzef commented 5 years ago

With gcc version 7.3.1 20180323 [gcc-7-branch revision 258812] (SUSE Linux) I get the following error:

... deps/Engine/Graphics/Ncurses.cpp: In function ‘bool Ncurses::init()’: deps/Engine/Graphics/Ncurses.cpp:23:13: error: lvalue required as left operand of assignment ESCDELAY = 25;

By commenting out this "ESCDELAY = 25; " compilation goes through and game works fine.