diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-09-01 13:40:34 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2004-09-01 13:40:34 +0000 |
commit | 143519ffef4157399247f4d98780acd4981c171f (patch) | |
tree | 22b6d04a09ff6baa0297e6344fc1e42035dbee1f /games-fps/doomsday | |
parent | ~amd64 (diff) | |
download | historical-143519ffef4157399247f4d98780acd4981c171f.tar.gz historical-143519ffef4157399247f4d98780acd4981c171f.tar.bz2 historical-143519ffef4157399247f4d98780acd4981c171f.zip |
I forgot to add the patch.
Diffstat (limited to 'games-fps/doomsday')
-rw-r--r-- | games-fps/doomsday/ChangeLog | 6 | ||||
-rw-r--r-- | games-fps/doomsday/Manifest | 3 | ||||
-rw-r--r-- | games-fps/doomsday/files/1.8.1-ambient-light.patch | 18 |
3 files changed, 25 insertions, 2 deletions
diff --git a/games-fps/doomsday/ChangeLog b/games-fps/doomsday/ChangeLog index c92e746c7fe1..d716e23f3423 100644 --- a/games-fps/doomsday/ChangeLog +++ b/games-fps/doomsday/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for games-fps/doomsday # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/games-fps/doomsday/ChangeLog,v 1.2 2004/08/31 22:17:26 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-fps/doomsday/ChangeLog,v 1.3 2004/09/01 13:40:34 wolf31o2 Exp $ + + 01 Sep 2004; Chris Gianelloni <wolf31o2@gentoo.org> + +files/1.8.1-ambient-light.patch: + I forgot to add the patch. *doomsday-1.8.1 (31 Aug 2004) diff --git a/games-fps/doomsday/Manifest b/games-fps/doomsday/Manifest index 66de7d92c0c8..b58c69eddd12 100644 --- a/games-fps/doomsday/Manifest +++ b/games-fps/doomsday/Manifest @@ -1,8 +1,9 @@ MD5 dc566ec8d6cc1be09aa65fef800ba258 doomsday-1.8.1.ebuild 1185 MD5 8746da74b983aa22bfa561f899818e12 doomsday-1.8.0.ebuild 1135 -MD5 d65d537f7fea73b2df2ca3a4496378ca ChangeLog 593 +MD5 f04d6c8829c8409f149e8401dd2355c9 ChangeLog 713 MD5 f17b9b8fa07a38914fe1c03268f51678 metadata.xml 158 MD5 c9f45fe4b0c154013fe56c8915ebd3f1 files/digest-doomsday-1.8.0 63 MD5 61f292434360c86e2522774cfeb44886 files/digest-doomsday-1.8.1 63 +MD5 246812e8b1ea00efa87e9f3458dcbce9 files/1.8.1-ambient-light.patch 485 MD5 5f91dc6393ff5aba59c015a5ab9ccbd0 files/1.8.0-filename-case.patch 502 MD5 5fa792096b783fb6b3cd3bd45c2f709c files/wrapper 136 diff --git a/games-fps/doomsday/files/1.8.1-ambient-light.patch b/games-fps/doomsday/files/1.8.1-ambient-light.patch new file mode 100644 index 000000000000..01b6c45ef224 --- /dev/null +++ b/games-fps/doomsday/files/1.8.1-ambient-light.patch @@ -0,0 +1,18 @@ +--- deng-1.8.1/Src/r_world.c.orig 2004-06-28 00:26:38.000000000 +0530 ++++ deng-1.8.1/Src/r_world.c 2004-08-21 01:21:25.000000000 +0530 +@@ -1447,13 +1447,13 @@ + if(mapinfo) + { + mapgravity = mapinfo->gravity * FRACUNIT; +- r_ambient = mapinfo->ambient * 255; ++ if (r_ambient<200) { r_ambient = 200; } + } + else + { + // No map info found, set some basic stuff. + mapgravity = FRACUNIT; +- r_ambient = 0; ++ if (r_ambient<200) { r_ambient = 200; } + } + + // Invalidate old cmds. |