From 07bdf7d148e16a8fb8d2197df85a36a2742c35a1 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+ --- desmume/src/windows/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/windows/main.cpp b/desmume/src/windows/main.cpp index 1f0c96eae..3dff7d100 100644 --- a/desmume/src/windows/main.cpp +++ b/desmume/src/windows/main.cpp @@ -3078,7 +3078,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;