n

Results 8 comments of n

@JoeyRxy Add this regex as a word replacement it worked like a charm for me `*(\ *\n\ *)([a-z])` - > ` $2` (* before expression makes it parse as regex...

you could and probably should ignore the \ * before \n i think

change it to `*([a-z])(\ *\n\ *)([a-z])` > `$1 $3`

> I added my comments. It is still not clear how did you test it. Please explain. @sev- I temporarily bypassed normal detection for fallback by commenting out the entry...

@sev- Also I a small while ago I noticed that some demos have multiple VersionInfo blocks not just for anything unrelated to Director but there are multiple blocks for Director...

@sev- I have updated the PR according to your suggestions.

I'm still yet to find a director game or demo that suitably uses WinResources aside from these default values I'll try to look for more demos or games to test...

@sev- I've fixed the style issues and redundant code and have rebased the PR into two commits as suggested