mirror of https://github.com/snes9xgit/snes9x.git
Gtk: Multiple assignment syntax.
This commit is contained in:
parent
3378d6cc02
commit
87bb383797
|
@ -168,7 +168,7 @@ std::tuple<int, int> WaylandSurface::get_size()
|
|||
|
||||
void WaylandSurface::resize()
|
||||
{
|
||||
int w, h; std::tie(w, h) = get_size();
|
||||
auto [w, h] = get_size();
|
||||
wl_subsurface_set_position(subsurface, x, y);
|
||||
|
||||
if (!viewport)
|
||||
|
|
Loading…
Reference in New Issue