mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
8a28b3ad80
commit
1002ceb240
1 changed files with 5 additions and 2 deletions
|
@ -1822,9 +1822,8 @@ void G_PrintGameQuotes(void)
|
||||||
else k += g_player[screenpeek].ps->fta;
|
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--)
|
for (i=MAXUSERQUOTES-1; i>=0; i--)
|
||||||
{
|
{
|
||||||
int32_t sh;
|
int32_t sh;
|
||||||
|
@ -1862,7 +1861,11 @@ void G_PrintGameQuotes(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef GEKKO
|
||||||
|
k = 16;
|
||||||
|
#else
|
||||||
k = 0;
|
k = 0;
|
||||||
|
#endif
|
||||||
|
|
||||||
if (g_player[screenpeek].ps->ftq >= QUOTE_RESERVED && g_player[screenpeek].ps->ftq <= QUOTE_RESERVED3)
|
if (g_player[screenpeek].ps->ftq >= QUOTE_RESERVED && g_player[screenpeek].ps->ftq <= QUOTE_RESERVED3)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue