$NetBSD: patch-ad,v 1.2 2005/03/29 13:59:40 jmmv Exp $

Drop C++ comments; they break the build with gcc-2.95.

--- iagno/othello.c.orig	2005-01-25 06:44:38.000000000 +0000
+++ iagno/othello.c
@@ -784,14 +784,11 @@ eval_board (gint8 board[8][8], guint me)
 				found_free = TRUE;
 		}
 		
-	// check if a player is dead
 	if (!found_me && found_not_me)
 		return (S_LOSING_GAME);
 	else if (found_me && !found_not_me)
 		return (S_WINNING_GAME);
 	
-	// if the game is finished, return the actual score rather than
-	// a huristic
 	if (!found_free)
 		return (actual_score);
 	
