Compiling FLStat
-
I found a bug with FLStat caused by altering the path of the resource dlls. It assumes that the resource dlls will always be located next to the exe, even though they can be located in another folder.
I thought I’d be able to fix it by altering the assembly found at Adoxa’s website, but I got no idea how to compile it (tried running it through NASM on a hunch, which didn’t get me anywhere). Any ideas how to properly compile it?
-
I looked into my issue further. Found that the dll names are hardcoded into the application. My names are different and in some cases longer. Do you know how I could increase the length of the string to accommodate my new path names?
-
There are two issues: you can’t use [c]…[/c] for a relative path (because I made it stop at a dot, due to QuickFix using tabs before the comment); nor can you use [c][/c] for an absolute path (it always prefixes the full exe path). If it’s relative paths causing the problem edit 2F36A, 2E74 -> 2076. That will stop at a space or control character (meaning a space/tab between resource and comment is required). I’m afraid you’re out of luck if you want an absolute path.