mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 10:50:26 +01:00
66cc1d014f
Add some empty lines. Move some files. Replace long repeating variable names with shorter preprocessors.
20 lines
491 B
C++
20 lines
491 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#include "StdH.h"
|
|
#include <Engine/Base/KeyNames.h>
|
|
#include <Engine/CurrentVersion.h>
|
|
#include "MenuPrinting.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"));
|
|
} |