1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Fix warnings with clang

This commit is contained in:
Mathieu Schroeter 2017-08-04 21:45:04 +02:00
parent 2d7a6f28d1
commit 0b9dda2a92

View File

@ -2228,12 +2228,12 @@ bool CEvent::DrawButtons ()
if (m_phase == WM_PHASE_INFO)
{
if (m_bSchool)
snprintf (res, sizeof (res), gettext ("Training number"));
snprintf (res, sizeof (res), "%s", gettext ("Training number"));
else
snprintf (res, sizeof (res), gettext ("Mission number"));
snprintf (res, sizeof (res), "%s", gettext ("Mission number"));
if (m_bPrivate)
snprintf (res, sizeof (res), gettext ("Construction number"));
snprintf (res, sizeof (res), "%s", gettext ("Construction number"));
lg = GetTextWidth (res);
pos.x = (140 + 270) / 2 - lg / 2;
@ -2445,7 +2445,7 @@ bool CEvent::DrawButtons ()
DrawText (m_pPixmap, pos, text);
if (!m_scrollSpeed)
snprintf (res, sizeof (res), gettext ("None"));
snprintf (res, sizeof (res), "%s", gettext ("None"));
else
sprintf (res, "%d", m_scrollSpeed);
lg = GetTextWidth (res);