Skip to content
Snippets Groups Projects
Commit 20d67375 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Treat .msg files the same as .asc when loading.

parent 56ad94b9
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2298 passed
...@@ -616,7 +616,7 @@ LoadFile(char *Name) ...@@ -616,7 +616,7 @@ LoadFile(char *Name)
/* Check for "known" extensions */ /* Check for "known" extensions */
ext=getfext(Name); ext=getfext(Name);
if(ext) { if(ext) {
if(stricmp(ext,".asc")==0) { if(stricmp(ext,".asc")==0 || stricmp(ext, ".msg")==0) {
PCB=FALSE; PCB=FALSE;
ANSI=FALSE; ANSI=FALSE;
AVATAR=FALSE; AVATAR=FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment