mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-17 10:30:00 +00:00
engine: client: cl_netgraph: fixed netgraph position calculation in center mode
This commit is contained in:
parent
a68afcc672
commit
afaabe26a6
@ -616,7 +616,7 @@ static void NetGraph_GetScreenPos( wrect_t *rect, int *w, int *x, int *y )
|
|||||||
*x = rect->left + rect->right - 5 - *w;
|
*x = rect->left + rect->right - 5 - *w;
|
||||||
break;
|
break;
|
||||||
case 2: // center
|
case 2: // center
|
||||||
*x = rect->left + ( rect->right - 10 - *w ) / 2;
|
*x = ( rect->left + ( rect->right - 10 - *w )) / 2;
|
||||||
break;
|
break;
|
||||||
default: // left sided
|
default: // left sided
|
||||||
*x = rect->left + 5;
|
*x = rect->left + 5;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user