summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorSND\notaz_cp <SND\notaz_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-01-08 00:47:38 +0000
committerSND\notaz_cp <SND\notaz_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2013-01-08 00:47:38 +0000
commita822176df79d4922cfbf2430934efbda27027c85 (patch)
treedfda5bd05a941f01fe3765d97f0909aa4a4d6067 /win32
parent3970861f1d7a205b4820ad17963e11c612c31f1a (diff)
downloadpcsxr-a822176df79d4922cfbf2430934efbda27027c85.tar.gz
add more extensions to file selectors
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@82102 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'win32')
-rwxr-xr-xwin32/gui/WndMain.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/gui/WndMain.c b/win32/gui/WndMain.c
index 39c213d8..f8401f21 100755
--- a/win32/gui/WndMain.c
+++ b/win32/gui/WndMain.c
@@ -1537,9 +1537,9 @@ int Open_Iso_Proc(char *file) {
ofn.lStructSize = sizeof(OPENFILENAME);
ofn.hwndOwner = gApp.hWnd;
- strcpy(szFilter, _("Psx Isos (*.iso;*.mdf;*.img;*.bin)"));
+ strcpy(szFilter, _("Psx Isos (*.iso;*.mdf;*.img;*.bin;*.cue;*.pbp;*.cbn)"));
str = szFilter + strlen(szFilter) + 1;
- strcpy(str, "*.iso;*.mdf;*.img;*.bin");
+ strcpy(str, "*.iso;*.mdf;*.img;*.bin;*.cue;*.pbp;*.cbn");
str += strlen(str) + 1;
strcpy(str, _("All Files"));