From ea039c0c199e96be486e7047e42460809ec813eb Mon Sep 17 00:00:00 2001
From: jsalmon3 <>
Date: Fri, 6 Dec 2002 23:00:54 +0000
Subject: [PATCH] Renamed DrawText to PictureDrawText

---
 src/game/intro.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/game/intro.cpp b/src/game/intro.cpp
index d6f58eec1..fb0b12e80 100644
--- a/src/game/intro.cpp
+++ b/src/game/intro.cpp
@@ -672,7 +672,7 @@ global void ShowCredits(Credits *credits)
 /**
 **	Draw text
 */
-local void DrawText(CampaignChapter* chapter,ChapterTextLines* chlines)
+local void PictureDrawText(CampaignChapter* chapter,ChapterTextLines* chlines)
 {
     ChapterPictureText* text;
     TextLines* lines;
@@ -762,7 +762,7 @@ global void ShowPicture(CampaignChapter* chapter)
 	    (VideoWidth-background->Width)/2,
 	    (VideoHeight-background->Height)/2,
 	    255*i/max);
-	DrawText(chapter,lines);
+	PictureDrawText(chapter,lines);
 	VideoUnlockScreen();
 
 	Invalidate();
@@ -784,7 +784,7 @@ global void ShowPicture(CampaignChapter* chapter)
 	    background->Width,background->Height,
 	    (VideoWidth-background->Width)/2,
 	    (VideoHeight-background->Height)/2);
-	DrawText(chapter,lines);
+	PictureDrawText(chapter,lines);
 	VideoUnlockScreen();
 
 	Invalidate();
@@ -805,7 +805,7 @@ global void ShowPicture(CampaignChapter* chapter)
 	    (VideoWidth-background->Width)/2,
 	    (VideoHeight-background->Height)/2,
 	    255*i/max);
-	DrawText(chapter,lines);
+	PictureDrawText(chapter,lines);
 	VideoUnlockScreen();
 
 	Invalidate();