Skip to content

Commit

Permalink
fix linking when il2cpp (missing c function)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomáš Malý committed Jan 16, 2019
1 parent e89e2a4 commit 8d73b8d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 9 deletions.
18 changes: 16 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
.DS_Store
/.vs
/.vscode
/*.user*
/*.log
/*.deb
/*.changes
/*.upload
*.DS_Store

/*.map
/build*
/callgrind.out.*
/massif.out.*
/obj-*
/cache
/corrupted
/extracted
/bin
/lib
/density-*.png
15 changes: 10 additions & 5 deletions browser/.gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
/cache
.DS_Store
/.vs
/.vscode
/*.user*
/*.log
/*.deb
/*.changes
/*.upload
/*.map
/build*
/callgrind.out.*
/massif.out.*
/*.map
/obj-*
/.vscode
/cache
/corrupted
/extracted
/bin
/lib
/build*
/density-*.png
/*.log
4 changes: 2 additions & 2 deletions browser/src/vts-libbrowser/mapApiC.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -735,14 +735,14 @@ void vtsNavigationSetAutoRotation(vtsHNavigation nav, double value)
C_END
}

void vtsNavigationSetJson(vtsHNavigation nav, const char *pos)
void vtsNavigationSetPositionJson(vtsHNavigation nav, const char *pos)
{
C_BEGIN
nav->p->setPositionJson(pos);
C_END
}

void vtsNavigationSetUrl(vtsHNavigation nav, const char *pos)
void vtsNavigationSetPositionUrl(vtsHNavigation nav, const char *pos)
{
C_BEGIN
nav->p->setPositionUrl(pos);
Expand Down

0 comments on commit 8d73b8d

Please sign in to comment.