Quote:
Originally Posted by REV0
i cant say anything about font alignment errors because my OS is English. If you know the solution to check alignment issues before posting files in here, or without re-installing an OS i'm listening. In the other hand, if game is installed, autorun will show 'play' instead of 'install'. To see this, you must install the game with compiled install, because it will add reg key about autorun.
About translations, please write correct ones so i can add them in .iss
Thanks
|
what Droppo's talking about is in your autorun.iss script is has 'InstallFolder'
yet your reg entries in alanwake.iss have 'Install DIR'. For the autorun to run correctly they have to match, so either change the reg entry or change the autorun.iss to match, then it works like it should for ANY language.
also section needs correcting
Code:
#ifdef AddToFireWallList
if FWAdd then begin
SetIniString('Windows Firewall', 'AppExlist', 'True', ExpandConstant('{app}\setup.ini'))
AddApplicationToExceptionList(ExpandConstant('{app}\iw5sp.exe'),ExpandConstant('{cm:AppName}'));
end else SetIniString('Windows Firewall', 'AppExlist', 'False', ExpandConstant('{app}\setup.ini'))
#endif
CHANGE iw5sp.exe to AlanWake.exe