r9469 - in packages/trunk/qonk/debian: . patches

Barry deFreese bdefreese at alioth.debian.org
Wed Apr 8 02:06:55 UTC 2009


Author: bdefreese
Date: 2009-04-08 02:06:54 +0000 (Wed, 08 Apr 2009)
New Revision: 9469

Added:
   packages/trunk/qonk/debian/patches/40_player_colors.diff
Modified:
   packages/trunk/qonk/debian/changelog
   packages/trunk/qonk/debian/patches/series
Log:
  * 40_player_colors.diff - Fix message colors. (Closes: #447215).
    + Thanks to Christian Pulvermacher for the hint!
Refresh changelog.


Modified: packages/trunk/qonk/debian/changelog
===================================================================
--- packages/trunk/qonk/debian/changelog	2009-04-07 19:58:00 UTC (rev 9468)
+++ packages/trunk/qonk/debian/changelog	2009-04-08 02:06:54 UTC (rev 9469)
@@ -1,8 +1,5 @@
-qonk (0.3.1-2) UNRELEASED; urgency=low
+qonk (0.3.1-2) unstable; urgency=low
 
-  [ Alexander Schmehl ]
-  * NOT RELEASED YET
-
   [ Eddy Petrișor ]
   * fix Vcs-Svn URL to point to svn, not the incomplete ssh location
 
@@ -12,10 +9,12 @@
   [ Barry deFreese ]
   * 30_gcc_4.4.diff - Build with gcc-4.4. (Closes: #504898).
     + Thanks to Martin Michlmayr for the fix.
+  * 40_player_colors.diff - Fix message colors. (Closes: #447215).
+    + Thanks to Christian Pulvermacher for the hint!
   * Update my e-mail address.
   * Bump Standards Version to 3.8.0.
 
- -- Martín Ferrari <tincho at debian.org>  Sat, 30 Aug 2008 04:42:34 +0000
+ -- Barry deFreese <bdefreese at debian.org>  Tue, 07 Apr 2009 22:05:58 -0400
 
 qonk (0.3.1-1) unstable; urgency=low
 

Added: packages/trunk/qonk/debian/patches/40_player_colors.diff
===================================================================
--- packages/trunk/qonk/debian/patches/40_player_colors.diff	                        (rev 0)
+++ packages/trunk/qonk/debian/patches/40_player_colors.diff	2009-04-08 02:06:54 UTC (rev 9469)
@@ -0,0 +1,26 @@
+Index: qonk-0.3.1/src/messages.cpp
+===================================================================
+--- qonk-0.3.1.orig/src/messages.cpp	2009-04-07 22:00:04.000000000 -0400
++++ qonk-0.3.1/src/messages.cpp	2009-04-07 22:01:23.000000000 -0400
+@@ -21,8 +21,8 @@
+ Message::Message( Uint32 time, string message, Uint32 displayTime, Uint32 color ) {
+   this->message = string( "[" ) + Timer::getTimeMMSS(time) + "] " + message;
+   this->displayTime = displayTime;
+-  this->r = getGreen( color );
+-  this->g = getRed( color );
++  this->r = getRed( color );
++  this->g = getGreen( color );
+   this->b = getBlue( color );
+ }
+ 
+@@ -37,8 +37,8 @@
+ Message::Message( Uint32 time, string message, Uint32 color ) {
+   this->message = string( "[" ) + Timer::getTimeMMSS(time) + "] " + message;
+   this->displayTime = 10000;
+-  this->r = getGreen( color );
+-  this->g = getRed( color );
++  this->r = getRed( color );
++  this->g = getGreen( color );
+   this->b = getBlue( color );
+ }
+ 

Modified: packages/trunk/qonk/debian/patches/series
===================================================================
--- packages/trunk/qonk/debian/patches/series	2009-04-07 19:58:00 UTC (rev 9468)
+++ packages/trunk/qonk/debian/patches/series	2009-04-08 02:06:54 UTC (rev 9469)
@@ -1,3 +1,4 @@
 10_build_environment.diff
 20_gcc_4.3.diff
 30_gcc_4.4.diff
+40_player_colors.diff




More information about the Pkg-games-commits mailing list