mirror of https://github.com/snes9xgit/snes9x.git
Fixed semicolon in vulcan_context.cpp
This commit is contained in:
parent
bb905521df
commit
3c09b1ea63
|
@ -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
|
||||||
|
|
||||||
|
@ -314,4 +314,4 @@ void Context::end_cmd_buffer()
|
||||||
one_time_use_cmd = nullptr;
|
one_time_use_cmd = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Vulkan
|
} // namespace Vulkan
|
||||||
|
|
Loading…
Reference in New Issue