Browse Source

Add contributor credit.

Lasse Öörni 9 years ago
parent
commit
fe2d6cf21a
3 changed files with 3 additions and 1 deletions
  1. 1 0
      Docs/Urho3D.dox
  2. 1 0
      README.md
  3. 1 1
      Source/Urho3D/Engine/Console.cpp

+ 1 - 0
Docs/Urho3D.dox

@@ -92,6 +92,7 @@ Urho3D development, contributions and bugfixes by:
 - Rokas Kupstys
 - Ali Kämäräinen
 - Pete Leigh
+- Arnis Lielturks
 - Frode 'Modanung' Lindeijer
 - Thorbjørn Lindeijer
 - Nathanial Lydick

+ 1 - 0
README.md

@@ -44,6 +44,7 @@ Urho3D development, contributions and bugfixes by:
 - Rokas Kupstys
 - Ali Kämäräinen
 - Pete Leigh
+- Arnis Lielturks
 - Frode 'Modanung' Lindeijer
 - Thorbjørn Lindeijer
 - Nathanial Lydick

+ 1 - 1
Source/Urho3D/Engine/Console.cpp

@@ -573,7 +573,7 @@ void Console::HandlePostUpdate(StringHash eventType, VariantMap& eventData)
         text = new Text(context_);
         text->SetText(pendingRows_[i].second_);
         
-        //Highlight console messages based on their type
+        // Highlight console messages based on their type
         text->SetStyle(logStyles[pendingRows_[i].first_]);
 
         rowContainer_->AddItem(text);