Wii: offset displayed quotes a bit from the top of the screen to deal with overscan

git-svn-id: https://svn.eduke32.com/eduke32@2771 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2012-06-20 20:03:51 +00:00
parent 8a28b3ad80
commit 1002ceb240
1 changed files with 5 additions and 2 deletions

View File

@ -1822,9 +1822,8 @@ void G_PrintGameQuotes(void)
else k += g_player[screenpeek].ps->fta;
}
j = k;
j = scale(k,ydim,200);
j = scale(j,ydim,200);
for (i=MAXUSERQUOTES-1; i>=0; i--)
{
int32_t sh;
@ -1862,7 +1861,11 @@ void G_PrintGameQuotes(void)
return;
}
#ifdef GEKKO
k = 16;
#else
k = 0;
#endif
if (g_player[screenpeek].ps->ftq >= QUOTE_RESERVED && g_player[screenpeek].ps->ftq <= QUOTE_RESERVED3)
{