Lemma
Not enough ratings
Windows XP compatibility
By himmler1
   
Award
Favorite
Favorited
Unfavorite
Main
I've tried to contact with Evan Todd, but there was no any response.

So, i've made it by myself. This game easily can support Windows XP.

Short way:

1)Download modded binary[disk.yandex.ru]

2)Place it in a game folder

3)Play


Long Way:

Game executable just needs small modification for that.
You need to modify (or just comletely delete) manifest (embedded into exe)
There is section <asmv1:application> that is not supported by Windows XP, so application doesn't start.
But deleting this section of manifest makes game fully work on Windows XP.


Original maniest (game doesn't start):

<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<assemblyIdentity version="1.0.0.0" name="Lemma.app"/>
<asmv1:application xmlns:asmv1="urn:schemas-microsoft-com:asm.v1">
<asmv1:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>True/PM</dpiAware>
</asmv1:windowsSettings>
</asmv1:application>
</asmv1:assembly>


Edited manifest (game works well):

<?xml version="1.0" encoding="utf-8"?>
<asmv1:assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<assemblyIdentity version="1.0.0.0" name="Lemma.app"/>
</asmv1:assembly>

Also, you can delete manifest at all - result will be the same.