Skip to content

Commit

Permalink
remove tools modules
Browse files Browse the repository at this point in the history
  • Loading branch information
Poggicek committed Oct 4, 2024
1 parent e785ff5 commit 9edc85d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/main/appframework.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ std::vector<AppSystemInfo> g_appSystems{
{ false, "soundsystem", SOUNDOPSYSTEMEDIT_INTERFACE_VERSION },
{ false, "vphysics2", VPHYSICS2HANDLE_INTERFACE_VERSION },
{ false, "worldrenderer", WORLD_RENDERER_MGR_INTERFACE_VERSION },
{ false, "assetsystem", ASSETSYSTEM_INTERFACE_VERSION, false },
{ false, "assetpreview", ASSETPREVIEWSYSTEM_INTERFACE_VERSION, false },
};

std::map<std::string, IAppSystem*> g_factoryMap;
Expand Down
4 changes: 4 additions & 0 deletions src/main/utils/module.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ class CModule

if (!m_hModule)
{
#ifdef _WIN32
ExitError("Failed to load %s\n", szModule.c_str());
#else
ExitError("Failed to load %s\n%s\n", szModule.c_str(), dlerror());
#endif
return;
}

Expand Down

0 comments on commit 9edc85d

Please sign in to comment.