Skip to content

Commit

Permalink
wayland_backend: Fix fractional scale bug
Browse files Browse the repository at this point in the history
  • Loading branch information
misyltoad committed Jun 4, 2024
1 parent 7f3f82b commit 09cb7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wayland_backend.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -983,7 +983,7 @@ namespace gamescope
.nDstHeight = int32_t( pLayer->tex->height() / double( pLayer->scale.y ) ),
.eColorspace = pLayer->colorspace,
.bOpaque = pLayer->zpos == g_zposBase,
.uFractionalScale = m_uFractionalScale,
.uFractionalScale = GetScale(),
} ) );
}
else
Expand Down

0 comments on commit 09cb7b4

Please sign in to comment.