Merge pull request #464 from AmbientMalice/patch-18
Change "segement" to "segment".
This commit is contained in:
commit
0c8d500328
|
@ -271,7 +271,7 @@ void CDMA::SP_DMA_READ()
|
|||
{
|
||||
if (bHaveDebugger())
|
||||
{
|
||||
g_Notify->DisplayError(__FUNCTIONW__ L"\ncould not fit copy in memory segement");
|
||||
g_Notify->DisplayError(__FUNCTIONW__ L"\ncould not fit copy in memory segment");
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue