cbarbagallo: Just womndering. Thanks.
Yes, it is. The IMAGE_FILE_LARGE_ADDRESS_AWARE flag is set in the executable, at least in the GOG version. If you have VC++ installed, you can check this with dumpbin.
(For those who don't know what this means, it means TW2 will use up to 3GB of userland memory on a 32-bit Windows host that allows it, or 4GB on a 64-bit Windows host. To get 32-bit Windows to allow 3GB userland (instead of the standard 2GB), you have to run:
On Windows 7 or Vista, run the command:
BCDEDIT /Set IncreaseUserVa 3072
On Windows XP, you have to edit the boot.ini file and add the switch /3GB; your boot line will end up looking something like:
multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional 3GB" /3GB /fastdetect
Do this at your own risk; sometimes this will cause other applications to break.)