Merge pull request #464 from AmbientMalice/patch-18

Change "segement" to "segment".
This commit is contained in:
zilmar 2015-05-16 11:05:35 +10:00
commit 0c8d500328
2 changed files with 3 additions and 3 deletions

View File

@ -271,7 +271,7 @@ void CDMA::SP_DMA_READ()
{ {
if (bHaveDebugger()) 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; return;
} }

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) 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; 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) 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; return;
} }