Horrowind

Results 8 comments of Horrowind

It always bothered me, that the border between the items increased from the inner ring to the outer, so here is a fix for that (only listing the inner rendering...

I just tested it. Removing xkas support is not that difficult actually. I removed all the occurrences of the emulatexkas and warnxkas (and the bit of code which set both...

You seem to be right about '\' -> '/', but my problem is really tolower. I am pretty sure there is some functionality in Windows for this, but I could...

Well we can also force the use of case sensitive paths with `CreateFile` and the `FILE_FLAG_POSIX_SEMANTICS` flag, see https://msdn.microsoft.com/en-us/library/aa363858(v=vs.85).aspx Quoting MSDN here: > Use care when using this option, because...

If you want to take a look, this is how I implemented normalization (in `platform/file_helpers.cpp`). This seemed to work okayish, sadly, my whole implementation of memory files is now in...

No, it is the other code I wrote to implement memory files that is buggy, this one seems to be fine. And you are right about `\` vs `/`. The...

To be clear, I only started the discussion because I liked to create/have a style file which I can use check if I messed up formatting somewhere. Opening braces on...

Quick question: Is it useful to have ``` incsrc "../../!IMPORTANT STUFF/test.asm" ``` be macro expanded? Does any real code use this or something similar for other uses of strings? Because...