tappytux: Fixes index out of bounds

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2035 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
sekelsenmat 2011-09-28 19:00:29 +00:00
parent fbc473d5b1
commit 412eaf705a

View File

@ -114,7 +114,7 @@ begin
TranslateUI();
// Initialize modules
for i := 0 to GetModuleCount() do
for i := 0 to GetModuleCount() -1 do
GetModule(i).InitModule();
end;