Skip to content

Commit

Permalink
Merge pull request #1130 from six809/coco3-partition-fix
Browse files Browse the repository at this point in the history
coco3: fix populating table of LBAs from CCPT table
  • Loading branch information
EtchedPixels authored Jan 8, 2025
2 parents f0d56ef + d0e8d24 commit 6895a88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Kernel/platform/platform-coco3/mbr.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ uint_fast8_t td_plt_setup(uint_fast8_t dev, uint32_t *lba, void *buf)
tstart >>= 1;
else
tstart <<= (br->secz - 1);
*lba++ = tstart;
*++lba = tstart;
k++;
kprintf("hd%c%d ", dev + 'a', k);
/* TODO: swap on CCPT */
Expand Down

0 comments on commit 6895a88

Please sign in to comment.