mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 19:00:27 +01:00
19 lines
465 B
C++
19 lines
465 B
C++
|
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
||
|
|
||
|
#include "StdH.h"
|
||
|
#include <Engine/Base/KeyNames.h>
|
||
|
#include <Engine/CurrentVersion.h>
|
||
|
#include <GameMP/LCDDrawing.h>
|
||
|
#include "MGTitle.h"
|
||
|
|
||
|
|
||
|
void CMGTitle::Render(CDrawPort *pdp)
|
||
|
{
|
||
|
SetFontTitle(pdp);
|
||
|
|
||
|
PIXaabbox2D box = FloatBoxToPixBox(pdp, mg_boxOnScreen);
|
||
|
PIX pixI = box.Center()(1);
|
||
|
PIX pixJ = box.Min()(2);
|
||
|
|
||
|
pdp->PutTextC(mg_strText, pixI, pixJ, LCDGetColor(C_WHITE | CT_OPAQUE, "title"));
|
||
|
}
|