freebsd-ports/games/pipenightdreams/files/patch-score.cpp
Eric Anholt 912a0e2310 Unbreak with new GCC by fixing bad C++ code.
PR:		77809
Submitted by:	self
Approved by:	maintainer timeout (2 months)
2005-04-23 21:06:40 +00:00

11 lines
255 B
C++

--- src/score.cpp.orig Sat Jan 1 14:44:00 2005
+++ src/score.cpp Sat Jan 1 14:44:07 2005
@@ -18,7 +18,7 @@
#include "score.h"
#include <math.h>
-Score::Score(int value=0){
+Score::Score(int value){
this->value=value;
delta=0;
changed=true;