(svn r11278) -Fix [FS#1342] (r11269): modulo result can be negative for signed int
authorglx
Tue, 16 Oct 2007 20:59:53 +0000
changeset 8237 33710ef2cfbe
parent 8236 a8905f3a9af7
child 8238 29844a206bbe
(svn r11278) -Fix [FS#1342] (r11269): modulo result can be negative for signed int
src/player_face.h
--- a/src/player_face.h	Tue Oct 16 20:44:59 2007 +0000
+++ b/src/player_face.h	Tue Oct 16 20:59:53 2007 +0000
@@ -196,7 +196,7 @@
 	pf = Random(); // random all player face bits
 
 	/* scale ge: 0 == GE_WM, 1 == GE_WF, 2 == GE_BM, 3 == GE_BF (and maybe in future: ...) */
-	ge = (GenderEthnicity)(ge % GE_END);
+	ge = (GenderEthnicity)((uint)ge % GE_END);
 
 	/* set the gender (and ethnicity) for the new player face */
 	if (adv) {