summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2004-09-13 02:23:56 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2004-09-13 02:23:56 +0000
commit1a74104b32ec38a103a42a6df2d6aba73d6033bc (patch)
tree56d6c280801a64307a77a2beac63f171efc474a4 /games-puzzle/pingus/files
parentRevision bump to fix linking issue. Only changes in files/id3lib-3.8.3-zlib.... (diff)
downloadgentoo-2-1a74104b32ec38a103a42a6df2d6aba73d6033bc.tar.gz
gentoo-2-1a74104b32ec38a103a42a6df2d6aba73d6033bc.tar.bz2
gentoo-2-1a74104b32ec38a103a42a6df2d6aba73d6033bc.zip
Add gcc43 patch from Peter `MathFox' Roozemaal via bug #63773
Diffstat (limited to 'games-puzzle/pingus/files')
-rw-r--r--games-puzzle/pingus/files/0.6.0-gcc34.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/games-puzzle/pingus/files/0.6.0-gcc34.patch b/games-puzzle/pingus/files/0.6.0-gcc34.patch
new file mode 100644
index 000000000000..b0f52ed4084d
--- /dev/null
+++ b/games-puzzle/pingus/files/0.6.0-gcc34.patch
@@ -0,0 +1,11 @@
+--- src/story_screen.cxx.orig 2004-09-12 17:09:51.000000000 -0700
++++ src/story_screen.cxx 2004-09-12 17:10:43.000000000 -0700
+@@ -142,7 +142,7 @@
+
+ if (!page_displayed_completly)
+ {
+- unsigned int len = static_cast<unsigned int>(20.0f * time_passed);
++ size_t len = static_cast<size_t>(20.0f * time_passed);
+ display_text = current_page.text.substr(0, Math::min(current_page.text.length(), len));
+
+ if (current_page.text.length() < len)