Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Vulkan: update initialization
|
|
Co-authored-by: bylaws <bylaws@users.noreply.github.com>
|
|
Uses fmt::print opposed to std::fprintf for error printing.
Call exit instead of returning to caller to prevent a like issue the
previous commit was trying to solve.
Removes unneeded comment.
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
Co-authored-by: Lioncash <mathew1800@gmail.com>
|
|
Spawns a child using fork and exec as opposed to fork alone. Workaround
for the macos file manager complaining about not supporting fork without
exec.
Control flow for *nix is now roughly the same as for Windows.
|
|
Copies up to sizeof(p_name) - 1 in strncpy and null terminates it at p_name[254]
|
|
|
|
The startup check apparently confuses other programs when yuzu launches
2 processes and then quickly closes one of them. Though this isn't
really our issues it's also not a big deal for me to add an option to
work around that issue.
|
|
yuzu: Move mini_dump out of core
startup_checks: Better exception handling
|
|
|
|
Solves MSVC compile error. Also drops need string use for comparison.
|
|
Adds some comments, removes unused includes, and removes last bits of
logging since this is before the logging backend starts up.
|
|
Wow fork() is nice, isn't it?
|
|
|
|
|
|
|