Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
off-by-one; jnthn++ for spotting
  • Loading branch information
diakopter committed Nov 8, 2011
1 parent 3ac97e3 commit 9cd77d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/runtime/Runtime/MultiDispatch/DispatchCache.lua
Expand Up @@ -29,7 +29,7 @@ function makeDispatchCache ()
if (Cache ~= nil and Cache.NumEntries ~= 0) then
local Seeking = DispatchCache.PositionalsToTypeCacheIDs(Positionals);

local ci = 0;
local ci = 1;
for ri = 1, Cache.NumEntries do
local Matched = true;
for j = 1, Positionals.Count do
Expand Down

0 comments on commit 9cd77d6

Please sign in to comment.