Add pc incorrect comment

This commit is contained in:
Miloslav Číž 2020-12-26 15:58:56 +01:00
parent 74046ac127
commit 26cfec6db8
1 changed files with 2 additions and 2 deletions

4
game.h
View File

@ -2251,8 +2251,8 @@ void SFG_monsterPerformAI(SFG_MonsterRecord *monster)
(attackType == SFG_MONSTER_ATTACK_EXPLODE); (attackType == SFG_MONSTER_ATTACK_EXPLODE);
uint8_t monsterSquare[2]; uint8_t monsterSquare[2];
/* because of cancerous C++ compilers that error on narrowing conversion in /* because of some insanely retarded C++ compilers that error on narrowing
{ } we init this way: */ conversion between { } we init this way: */
monsterSquare[0] = SFG_MONSTER_COORD_TO_SQUARES(monster->coords[0]); monsterSquare[0] = SFG_MONSTER_COORD_TO_SQUARES(monster->coords[0]);
monsterSquare[1] = SFG_MONSTER_COORD_TO_SQUARES(monster->coords[1]); monsterSquare[1] = SFG_MONSTER_COORD_TO_SQUARES(monster->coords[1]);