View Single Post
  #9  
Old 16-02-2012, 18:03
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by REV0 View Post
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

Last edited by pakrat2k2; 16-02-2012 at 18:13. Reason: missed section in inno script.
Reply With Quote