mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-25 09:04:53 +00:00
ProfileViewer: Fix opening the kernel image
The kernel image is now at /boot/Kernel (not /boot/kernel), so adjust the paths accordingly.
This commit is contained in:
committed by
Andreas Kling
parent
6fcdfe1169
commit
b8fef58c0c
@@ -72,7 +72,7 @@ DisassemblyModel::DisassemblyModel(Profile& profile, ProfileNode& node)
|
||||
{
|
||||
String path;
|
||||
if (m_node.address() >= 0xc0000000)
|
||||
path = "/boot/kernel";
|
||||
path = "/boot/Kernel";
|
||||
else
|
||||
path = profile.executable_path();
|
||||
m_file = make<MappedFile>(path);
|
||||
|
||||
Reference in New Issue
Block a user