From 8393f828dd73384fbaac6800aa0ad7bb61c0902c Mon Sep 17 00:00:00 2001 From: cottonvibes Date: Fri, 28 Aug 2009 19:45:37 +0000 Subject: [PATCH] Fix a typo causing *.dump files not to appear in the "Run ISO" file browser. git-svn-id: http://pcsx2.googlecode.com/svn/trunk@1700 96395faa-99c1-11dd-bbfe-3dabce05a288 --- pcsx2/windows/WinMain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/windows/WinMain.cpp b/pcsx2/windows/WinMain.cpp index 682e7f6721..6eba335452 100644 --- a/pcsx2/windows/WinMain.cpp +++ b/pcsx2/windows/WinMain.cpp @@ -461,7 +461,7 @@ BOOL Open_Iso_File_Proc( std::string& outstr ) char szFileName[ g_MaxPath ]; char szFileTitle[ g_MaxPath ]; char * filter = - "All Supported (.iso .mdf .nrg .bin .img .dump)\0*.iso;*.mdf;*.nrg;*.bin;*.img,*.dump\0" + "All Supported (.iso .mdf .nrg .bin .img .dump)\0*.iso;*.mdf;*.nrg;*.bin;*.img;*.dump\0" "Disc Images (.iso .mdf .nrg .bin .img)\0*.iso;*.mdf;*.nrg;*.bin;*.img\0" "Blockdumps (.dump)\0*.dump\0" "All Files (*.*)\0*.*\0";