fix missing return in d2d_display init_input (#8596)

This commit is contained in:
Thomas Kooi
2021-10-28 00:25:13 +02:00
committed by GitHub
parent e7d08788c0
commit cbe0ea2772

View File

@ -198,6 +198,7 @@ namespace ace {
LOG(ERROR) << "Could not register raw input devices. ";
exit(1);
}
return true;
}
bool d3d_display::create(uint32_t width = 1024, uint32_t height = 768, bool fullscreen = false) {