minor change in file filter

This commit is contained in:
chinhodado 2014-02-22 22:35:15 -05:00
parent 6491557c17
commit 9ba79f31a2

View File

@ -1273,7 +1273,7 @@ void CtrlDisAsmView::disassembleToFile()
ofn.lpstrFile = fileName ;
ofn.lpstrFile[0] = '\0';
ofn.nMaxFile = sizeof( fileName );
ofn.lpstrFilter = L"All files";
ofn.lpstrFilter = L"All Files\0*.*\0\0";
ofn.nFilterIndex = 1;
ofn.lpstrFileTitle = NULL ;
ofn.nMaxFileTitle = 0 ;
@ -1319,4 +1319,4 @@ u32 CtrlDisAsmView::getInstructionSizeAt(u32 address)
u32 start = manager.getStartAddress(address);
u32 next = manager.getNthNextAddress(start,1);
return next-address;
}
}