File tree 8 files changed +15
-1
lines changed
8 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 323
323
- Función de entrada EGA abolida.
324
324
- v.5.8.6 (2025-XX-YY)
325
325
- Added Spanish translation.
326
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change 323
323
- Abolished EGA input function.
324
324
- v.5.8.6 (2025-XX-YY)
325
325
- Added Spanish translation.
326
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change 323
323
- Abolita funzione input EGA.
324
324
- v.5.8.6 (2025-XX-YY)
325
325
- Added Spanish translation.
326
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change 667
667
- EGA input関数を廃止した。
668
668
- v.5.8.6 (2025-XX-YY)
669
669
- Added Spanish translation.
670
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change 324
324
- EGA 입력 기능이 폐지되었습니다.
325
325
- v.5.8.6 (2025-XX-YY)
326
326
- Added Spanish translation.
327
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change 323
323
- Abolished EGA input function.
324
324
- v.5.8.6 (2025-XX-YY)
325
325
- Added Spanish translation.
326
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change 323
323
- Abolished EGA input function.
324
324
- v.5.8.6 (2025-XX-YY)
325
325
- Added Spanish translation.
326
+ - Fixed RES_save function for saving *.dll.
Original file line number Diff line number Diff line change @@ -9483,8 +9483,15 @@ BOOL MMainWnd::DoSaveResAs(LPCWSTR pszResFile)
9483
9483
BOOL MMainWnd::DoSaveFile(HWND hwnd, LPCWSTR pszFile)
9484
9484
{
9485
9485
LPWSTR pchDotExt = PathFindExtensionW(pszFile);
9486
- if (lstrcmpiW(pchDotExt, L".exe") == 0)
9486
+ if (lstrcmpiW(pchDotExt, L".exe") == 0 ||
9487
+ lstrcmpiW(pchDotExt, L".dll") == 0 ||
9488
+ lstrcmpiW(pchDotExt, L".ocx") == 0 ||
9489
+ lstrcmpiW(pchDotExt, L".cpl") == 0 ||
9490
+ lstrcmpiW(pchDotExt, L".scr") == 0 ||
9491
+ lstrcmpiW(pchDotExt, L".mui") == 0)
9492
+ {
9487
9493
return DoSaveExeAs(pszFile);
9494
+ }
9488
9495
if (lstrcmpiW(pchDotExt, L".rc") == 0)
9489
9496
return DoExportRC(pszFile, NULL);
9490
9497
if (lstrcmpiW(pchDotExt, L".res") == 0)
You can’t perform that action at this time.
0 commit comments