Change-Id: Ic6639e85c42f7ebf435ebad2740e921b7b932ead
This commit is contained in:
Aidan MacDonald 2024-03-31 18:10:38 +01:00
parent dc9d354ed2
commit 856e3d548b
2 changed files with 4 additions and 4 deletions

View file

@ -152,8 +152,8 @@ static inline bool multiboot_is_boot_volume(int volume)
return volume_drive(volume) == 0;
#else
/* FIXME: Anything else that can get here is a Sansa. */
return volume_drive(volume) == boot_data.boot_volume ||
volume == boot_data.boot_volume;
return volume_drive(volume) == boot_data._boot_volume ||
volume == boot_data._boot_volume;
#endif
}