mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
Fix redefinitions of coordinates
This commit is contained in:
parent
b4e0906fdb
commit
e1b495fd9f
1 changed files with 9 additions and 10 deletions
|
@ -933,15 +933,14 @@ int current_perk_order;
|
||||||
|
|
||||||
void HUD_Perks (void)
|
void HUD_Perks (void)
|
||||||
{
|
{
|
||||||
int row, column = 0;
|
int x, y;
|
||||||
int x, y = 0;
|
|
||||||
|
|
||||||
#ifdef VITA
|
#ifdef VITA
|
||||||
int x = 36;
|
x = 36;
|
||||||
int y = 4;
|
y = 4;
|
||||||
#else
|
#else
|
||||||
int x = 26;
|
x = 26;
|
||||||
int y = 364;
|
y = 364;
|
||||||
#endif // VITA
|
#endif // VITA
|
||||||
|
|
||||||
// Draw Even numbered Perks first -- these need to be
|
// Draw Even numbered Perks first -- these need to be
|
||||||
|
@ -963,11 +962,11 @@ void HUD_Perks (void)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef VITA
|
#ifdef VITA
|
||||||
int x = 12;
|
x = 12;
|
||||||
int y = 4;
|
y = 4;
|
||||||
#else
|
#else
|
||||||
int x = 10;
|
x = 10;
|
||||||
int y = 364;
|
y = 364;
|
||||||
#endif // VITA
|
#endif // VITA
|
||||||
|
|
||||||
// Now the Odd numbered ones.
|
// Now the Odd numbered ones.
|
||||||
|
|
Loading…
Reference in a new issue