intel-virtual-output: Remove the stray 1
The 'output-is-changed' flags was accidentally initialised to 01 rather than 0, causing all attached outputs to be considered to have changed everytime. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
This commit is contained in:
parent
84b66849fc
commit
d54f0fa16d
|
|
@ -812,7 +812,7 @@ static void context_update(struct context *ctx)
|
|||
XRROutputInfo *o;
|
||||
XRRCrtcInfo *c;
|
||||
RRMode mode = 0;
|
||||
int changed = 0l;
|
||||
int changed = 0;
|
||||
|
||||
o = XRRGetOutputInfo(dpy, res, output->rr_output);
|
||||
if (o == NULL)
|
||||
|
|
|
|||
Loading…
Reference in New Issue