Corrected "segment" typo.

This commit is contained in:
AmbientMalice 2015-05-15 23:36:42 +10:00
parent 8bf7405e3c
commit baf8d3907e
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ void SP_DMA_READ (void)
if ((*RSPInfo.SP_RD_LEN_REG & 0xFFF) + 1 + (*RSPInfo.SP_MEM_ADDR_REG & 0xFFF) > 0x1000)
{
MessageBox(NULL,"SP DMA READ\ncould not fit copy in memory segement","Error",MB_OK);
MessageBox(NULL,"SP DMA READ\ncould not fit copy in memory segment","Error",MB_OK);
return;
}
@ -123,7 +123,7 @@ void SP_DMA_WRITE (void)
if ((*RSPInfo.SP_WR_LEN_REG & 0xFFF) + 1 + (*RSPInfo.SP_MEM_ADDR_REG & 0xFFF) > 0x1000)
{
MessageBox(NULL,"SP DMA WRITE\ncould not fit copy in memory segement","Error",MB_OK);
MessageBox(NULL,"SP DMA WRITE\ncould not fit copy in memory segment","Error",MB_OK);
return;
}