From 77c6a1174c6e0e649b2a6196fabac7e9f26f2108 Mon Sep 17 00:00:00 2001 From: adelikat Date: Sun, 2 Aug 2009 19:53:20 +0000 Subject: [PATCH] Win32 - Adding an "all files" open in the Loadstate as Open file dialog box. Adding on the trunk and on 9.2+ --- src/windows/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/main.cpp b/src/windows/main.cpp index 7e04507fe..f4e39c0b2 100644 --- a/src/windows/main.cpp +++ b/src/windows/main.cpp @@ -3178,7 +3178,7 @@ LRESULT CALLBACK WindowProcedure (HWND hwnd, UINT message, WPARAM wParam, LPARAM ZeroMemory(&ofn, sizeof(ofn)); ofn.lStructSize = sizeof(ofn); ofn.hwndOwner = hwnd; - ofn.lpstrFilter = "DeSmuME Savestate (*.dst)\0*.dst\0\0"; + ofn.lpstrFilter = "DeSmuME Savestate (*.dst)\0*.dst\0All files (*.*)\0*.*\0\0"; ofn.nFilterIndex = 1; ofn.lpstrFile = SavName; ofn.nMaxFile = MAX_PATH;