Removed characteristics output from EmuInitFs, was used while debugging

This commit is contained in:
Luke Usher 2016-08-19 23:44:09 +01:00
parent 9ebd40069a
commit 98c3095179
1 changed files with 1 additions and 1 deletions

View File

@ -292,7 +292,7 @@ void EmuInitFS()
continue;
}
DbgPrintf("Searching for FS Instruction in section %s 0x%08X\n", CxbxKrnl_Exe->m_SectionHeader[sectionIndex].m_name, CxbxKrnl_Exe->m_SectionHeader[sectionIndex].m_characteristics);
DbgPrintf("Searching for FS Instruction in section %s\n", CxbxKrnl_Exe->m_SectionHeader[sectionIndex].m_name);
uint32_t startAddr = CxbxKrnl_Exe->m_SectionHeader[sectionIndex].m_virtual_addr + CxbxKrnl_XbeHeader->dwBaseAddr;
for (uint32 addr = startAddr; addr < startAddr + CxbxKrnl_Exe->m_SectionHeader[sectionIndex].m_sizeof_raw; addr++)
{