mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
SW: Make horiz centering a bit less immediate again
This commit is contained in:
parent
cba38c5cfc
commit
701b33da0d
1 changed files with 13 additions and 1 deletions
|
@ -1929,7 +1929,19 @@ DoPlayerHorizon(PLAYERp pp, fix16_t *pq16horiz, fix16_t q16horz)
|
|||
|
||||
if (TEST_SYNC_KEY(pp, SK_CENTER_VIEW))
|
||||
{
|
||||
*pq16horiz = pp->q16horizbase = fix16_from_int(100);
|
||||
if (PEDANTIC_MODE)
|
||||
pp->q16horizbase = fix16_from_int(100);
|
||||
else if (pp->q16horizbase > fix16_from_int(100))
|
||||
{
|
||||
pp->q16horizbase = fix16_ssub(pp->q16horizbase, fix16_from_float(scaleAdjustmentToInterval((HORIZ_SPEED*6))));
|
||||
pp->q16horizbase = fix16_max(pp->q16horizbase, fix16_from_int(100));
|
||||
}
|
||||
else if (pp->q16horizbase < fix16_from_int(100))
|
||||
{
|
||||
pp->q16horizbase = fix16_sadd(pp->q16horizbase, fix16_from_float(scaleAdjustmentToInterval((HORIZ_SPEED*6))));
|
||||
pp->q16horizbase = fix16_min(pp->q16horizbase, fix16_from_int(100));
|
||||
}
|
||||
pp->camq16horiz = pp->q16horizbase;
|
||||
pp->q16horizoff = 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue