mirror of
https://github.com/justinian/jsix.git
synced 2025-12-09 16:04: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) {
|
if (!has_panic) {
|
||||||
for (const descriptor &d : bc.panics()) {
|
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);
|
panic = loader::load_file(disk, d.path);
|
||||||
has_panic = true;
|
has_panic = true;
|
||||||
break;
|
break;
|
||||||
|
|||||||
Reference in New Issue
Block a user