SCI: Remove extra '\n's in debugC messages

svn-id: r47707
This commit is contained in:
Willem Jan Palenstijn 2010-01-30 11:59:05 +00:00
parent 9449585893
commit 06bd17ee71
14 changed files with 87 additions and 87 deletions

View file

@ -121,7 +121,7 @@ reg_t kClone(EngineState *s, int argc, reg_t *argv) {
return NULL_REG;
}
debugC(2, kDebugLevelMemory, "Attempting to clone from %04x:%04x\n", PRINT_REG(parent_addr));
debugC(2, kDebugLevelMemory, "Attempting to clone from %04x:%04x", PRINT_REG(parent_addr));
clone_obj = s->_segMan->allocateClone(&clone_addr);