Skip to content

Commit

Permalink
Upgrade to Defold 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aglitchman committed Jun 25, 2024
1 parent 9d1f5a9 commit 362b2c6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion game.project
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ title = scene3d_examples
version = dev
developer = Indiesoft LLC
dependencies#0 = https://github.com/britzl/ludobits/archive/7.1.0.zip
dependencies#1 = https://github.com/britzl/defold-screenshot/archive/1.8.2.zip
dependencies#1 = https://github.com/britzl/defold-screenshot/archive/1.11.0.zip
dependencies#2 = https://github.com/britzl/defold-clipboard/archive/1.3.0.zip
dependencies#3 = https://github.com/indiesoftby/defold-pointer-lock/archive/1.0.0.zip
dependencies#4 = https://github.com/subsoap/defos/archive/refs/tags/v2.7.1.zip
Expand Down
4 changes: 2 additions & 2 deletions scene3d/src/extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -660,8 +660,8 @@ static dmExtension::Result OnPostRender(dmExtension::Params* params)

static dmExtension::Result AppInitializeExt(dmExtension::AppParams* params)
{
dmExtension::RegisterCallback(dmExtension::CALLBACK_PRE_RENDER, OnPreRender);
dmExtension::RegisterCallback(dmExtension::CALLBACK_POST_RENDER, OnPostRender);
dmExtension::RegisterCallback(dmExtension::CALLBACK_PRE_RENDER, (FExtensionCallback)OnPreRender);
dmExtension::RegisterCallback(dmExtension::CALLBACK_POST_RENDER, (FExtensionCallback)OnPostRender);

return dmExtension::RESULT_OK;
}
Expand Down

0 comments on commit 362b2c6

Please sign in to comment.