Tweak CashTick and Oil Derricks

This commit is contained in:
Paul Chote
2011-03-19 17:45:18 +13:00
parent 08158a6929
commit a5af4e85ce
3 changed files with 9 additions and 8 deletions

View File

@@ -35,7 +35,7 @@ namespace OpenRA.Graphics
public ITexture PaletteTexture;
public readonly SpriteFont RegularFont, BoldFont, TitleFont, TinyFont;
public readonly SpriteFont RegularFont, BoldFont, TitleFont, TinyFont, TinyBoldFont;
internal const int TempBufferSize = 8192;
const int TempBufferCount = 8;
@@ -59,7 +59,8 @@ namespace OpenRA.Graphics
BoldFont = new SpriteFont("FreeSansBold.ttf", 14);
TitleFont = new SpriteFont("titles.ttf", 48);
TinyFont = new SpriteFont("FreeSans.ttf", 10);
TinyBoldFont = new SpriteFont("FreeSansBold.ttf", 10);
for( int i = 0 ; i < TempBufferCount ; i++ )
{
tempBuffersV.Enqueue( device.CreateVertexBuffer( TempBufferSize ) );