mirror of
https://github.com/justinian/jsix.git
synced 2025-12-10 00:14:32 -08:00
[boot] Fix panic handler not installing
The switch to util::bitset introduced a typo that caused panic handlers to never load.
This commit is contained in:
@@ -105,7 +105,7 @@ load_resources(
|
||||
|
||||
if (!has_panic) {
|
||||
for (const descriptor &d : bc.panics()) {
|
||||
if (d.flags.get(desc_flags::graphical)) {
|
||||
if (!d.flags.get(desc_flags::graphical)) {
|
||||
panic = loader::load_file(disk, d.path);
|
||||
has_panic = true;
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user