mirror of https://github.com/snes9xgit/snes9x.git
Merge pull request #914 from bernborgess/fix-vulkan-semicolon
Vulkan: Fixed semicolon in vulcan_context.cpp
This commit is contained in:
commit
8077396d39
|
@ -141,7 +141,7 @@ bool Context::init_wayland(wl_display *dpy, wl_surface *parent, int initial_widt
|
||||||
return false;
|
return false;
|
||||||
surface = std::move(new_surface);
|
surface = std::move(new_surface);
|
||||||
|
|
||||||
return init(preferred_device, initial_width, initial_height)
|
return init(preferred_device, initial_width, initial_height);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue