This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fix error in tile code computation.
legacy
Sam Hocevar
sam
14 years ago
parent
af3be15a7d
commit
6a3405bf7a
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/map.cpp
+ 1
- 1
src/map.cpp
View File
@@ -74,7 +74,7 @@ Map::Map(char const *path)
if (n == data->ntilers - 1
|| id < gids[n + 1])
{
code = (data->tilers[n] << 16) | (id -
1
);
code = (data->tilers[n] << 16) | (id -
gids[n]
);
break;
}
}
Write
Preview
Loading…
Cancel
Save