fix return type
This commit is contained in:
+1
-1
@@ -18,6 +18,6 @@ void MultiBootInit(struct MultiBootParam *mp);
|
|||||||
int MultiBootMain(struct MultiBootParam *mp);
|
int MultiBootMain(struct MultiBootParam *mp);
|
||||||
void MultiBootStartProbe(struct MultiBootParam *mp);
|
void MultiBootStartProbe(struct MultiBootParam *mp);
|
||||||
void MultiBootStartMaster(struct MultiBootParam *mp, const u8 *srcp, int length, u8 palette_color, s8 palette_speed);
|
void MultiBootStartMaster(struct MultiBootParam *mp, const u8 *srcp, int length, u8 palette_color, s8 palette_speed);
|
||||||
int MultiBootCheckComplete(struct MultiBootParam *mp);
|
bool32 MultiBootCheckComplete(struct MultiBootParam *mp);
|
||||||
|
|
||||||
#endif // GUARD_MULTIBOOT_H
|
#endif // GUARD_MULTIBOOT_H
|
||||||
|
|||||||
+1
-1
@@ -327,7 +327,7 @@ void MultiBootStartMaster(struct MultiBootParam *mp, const u8 *srcp, int length,
|
|||||||
mp->probe_count = 0xd0;
|
mp->probe_count = 0xd0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int MultiBootCheckComplete(struct MultiBootParam *mp)
|
bool32 MultiBootCheckComplete(struct MultiBootParam *mp)
|
||||||
{
|
{
|
||||||
if (mp->probe_count == 0xe9)
|
if (mp->probe_count == 0xe9)
|
||||||
return 1;
|
return 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user