Changeset 8825 for code/branches
- Timestamp:
- Aug 6, 2011, 11:07:35 AM (13 years ago)
- Location:
- code/branches/output
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/output/data/overlays/debug.oxo
r8706 r8825 40 40 <Template name="defaultHUD"> 41 41 <OverlayGroup name = "defaultHUD" scale = "1, 1"> 42 <ChatOverlay43 name = "chat"44 position = "0.03, 0.08"45 font = "VeraMono"46 caption = ""47 textsize = 0.02548 />49 50 42 <KillMessage 51 43 name = "killmessage" … … 84 76 /> 85 77 78 <ChatOverlay 79 name = "chat" 80 position = "0.03, 0.08" 81 font = "VeraMono" 82 caption = "" 83 textsize = 0.025 84 /> 85 86 86 </OverlayGroup> 87 87 </Template> -
code/branches/output/src/modules/overlays/hud/ChatOverlay.cc
r8822 r8825 109 109 this->text_->setCaption(""); 110 110 111 for (std::list<Ogre::DisplayString>:: reverse_iterator it = this->messages_.rbegin(); it != this->messages_.rend(); ++it)111 for (std::list<Ogre::DisplayString>::iterator it = this->messages_.begin(); it != this->messages_.end(); ++it) 112 112 { 113 113 this->text_->setCaption(this->text_->getCaption() + "\n" + (*it));
Note: See TracChangeset
for help on using the changeset viewer.