Squashed 'deps/nostalgia/' changes from a75c4a11..e758e03d
e758e03d [nostalgia,olympic] Update for ox::Error changes 835e3270 [ox] Make Error use std::source_location 480dd5ec [ox/std] Cleanup dba6bb58 [ox/std] Make Vector(initializer_list) use list size as capacity 40a456e5 [ox/std] Add Vector::shrink_to_fit bf5be00c Merge commit 'dc96270ca5e882e41f6b657be14a20e8bd2ad501' dc7c2559 [studio] Make selection tracker not go below 0 git-subtree-dir: deps/nostalgia git-subtree-split: e758e03d2bbffbf72d28970ec379e29d7dd0cbf3
This commit is contained in:
@ -48,8 +48,8 @@ OX_ALLOW_UNSAFE_BUFFERS_END
|
||||
oxErrf("\tError Message:\t{}\n", err.msg);
|
||||
}
|
||||
oxErrf("\tError Code:\t{}\n", static_cast<ErrorCode>(err));
|
||||
if (err.file != nullptr) {
|
||||
oxErrf("\tError Location:\t{}:{}\n", err.file, err.line);
|
||||
if (err.src.file_name() != nullptr) {
|
||||
oxErrf("\tError Location:\t{}:{}\n", err.src.file_name(), err.src.line());
|
||||
}
|
||||
// disable all interrupt handling and IntrWait on no interrupts
|
||||
REG_IE = 0;
|
||||
|
Reference in New Issue
Block a user