Egor
Egor
Check if visual artifacting is present in b557ed4da066edbfb6db2d116a4e6eb02f058a02 and the commit before it (or just bisect. each individual commit should compile, run and work). That commit is supposed to reimplement...
Looks like I forgot to notify you when I fixed this. I merged the changes from master and tested it, it seems to work fine.
The correct way to hash NES ROMs is to skip the header (start from byte 16). For his ROM database, NewRisingSun [recommends](https://forums.nesdev.org/viewtopic.php?t=19940) to look up two hashes: one that stops...
It does work on Arch, you just need to compile it from source ;-)
Windows 10 1709, looks fine before and after ea95b51686ec23cc3be73700bcdb54955e92dba0 with both font scaling (115%) and high DPI (125%)
>* make a directory in Program Files or Program Files (x86) as appropriate Isn't really required, it's gonna be `Program Files` either way. (Unless we copy 32-bit binaries into `Program...
Or, for consistency with LivingEntity method names, these could be called applyArmorToDamage and applyProtectionToDamage. In any case, the current names aren't particularly descriptive.
Here's something to consider. Renaming the factory methods won't really solve the type confusion problem. The user could create a method which returns a component, and then just forget the...
I think a `with` prefix is fine, and adding it is sufficient to solve both #223 and this issue (since it'd be easier to tell that the factory methods return...
Fun fact, older versions of OpenMP didn't allow unsigned loop indexes, and using them caused UB. We don't have that problem, as the last instance of it was fixed in...