diff --git a/Source/Project64/N64 System/Mips/Dma.cpp b/Source/Project64/N64 System/Mips/Dma.cpp index 191af9043..9ab9ea30d 100644 --- a/Source/Project64/N64 System/Mips/Dma.cpp +++ b/Source/Project64/N64 System/Mips/Dma.cpp @@ -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; } diff --git a/Source/RSP/dma.c b/Source/RSP/dma.c index 6a40a1d15..99905c6a7 100644 --- a/Source/RSP/dma.c +++ b/Source/RSP/dma.c @@ -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; }