Changeset 8512 in orxonox.OLD for branches/gui/src
- Timestamp:
- Jun 16, 2006, 12:41:33 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/lib/gui/gl/specials/glgui_notifier.cc
r8510 r8512 69 69 this->hiddenText.pop(); 70 70 dl.age = 0.0f; 71 this->displayLines.push_ back(dl);71 this->displayLines.push_front(dl); 72 72 73 73 this->repositionText(); … … 75 75 else 76 76 { 77 printf("grumble... must be fixed\n"); 77 this->inputBuffer.push_front(message); 78 //printf("grumble... must be fixed\n"); 78 79 } 79 80 } … … 142 143 this->hiddenText.push((*tmp).text); 143 144 this->displayLines.erase(tmp); 145 146 if (!inputBuffer.empty()) 147 { 148 this->pushNotifyMessage(inputBuffer.back()); 149 inputBuffer.pop_back(); 150 } 144 151 } 145 152 }
Note: See TracChangeset
for help on using the changeset viewer.