diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-06-23 22:20:13 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2010-06-23 22:20:13 +0000 |
commit | eaaddfc052a26392964c1580fa39dc629828884f (patch) | |
tree | 79763556fd0a0be9cb1dbc18dc2a03bc24b9412a /game/plugins | |
parent | e986ba2f72cc68fc326e0a902c406774783a08bf (diff) | |
download | usdx-eaaddfc052a26392964c1580fa39dc629828884f.tar.gz usdx-eaaddfc052a26392964c1580fa39dc629828884f.tar.xz usdx-eaaddfc052a26392964c1580fa39dc629828884f.zip |
fix font size for first player
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2558 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | game/plugins/teamduel.usdx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/plugins/teamduel.usdx b/game/plugins/teamduel.usdx index c5a35aa0..68e91da3 100644 --- a/game/plugins/teamduel.usdx +++ b/game/plugins/teamduel.usdx @@ -23,7 +23,7 @@ * $URL$
* $Id$
*]]
-
+
-- some values to adjust the creation of PlayerChanges
local MinPercentage = 0.06; -- minimal amount of points between changes (in percent)
local MaxPercentage = 0.12; -- maximal amount of points between changes (in percent)
@@ -162,8 +162,8 @@ function DrawPlayerText(i, Text) -- text
Gl.Color(1, 0, 0, 1);
- TextGl.Size(18);
TextGl.Style(1);
+ TextGl.Size(18);
TextGl.Italic(false);
local PosX = (OSD[i].Left + OSD[i].Right) / 2;
PosX = PosX - TextGl.Width(Text) / 2;
|