File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,7 @@ const smart_refctd_ptr<IFileArchive> UI::mount(smart_refctd_ptr<ILogger> logger,
131
131
#else
132
132
auto NBL_EXTENSION_MOUNT_DIRECTORY_ENTRY = (path (_ARCHIVE_ABSOLUTE_ENTRY_PATH_) / NBL_ARCHIVE_ENTRY).make_preferred ();
133
133
auto archive = make_smart_refctd_ptr<nbl::system::CMountDirectoryArchive>(std::move (NBL_EXTENSION_MOUNT_DIRECTORY_ENTRY), smart_refctd_ptr (logger), system);
134
- system->mount (smart_refctd_ptr (archive), NBL_ARCHIVE_ENTRY );
134
+ system->mount (smart_refctd_ptr (archive), archiveAlias. data () );
135
135
#endif
136
136
137
137
return smart_refctd_ptr (archive);
@@ -262,7 +262,7 @@ core::smart_refctd_ptr<video::IGPUGraphicsPipeline> UI::createPipeline(SCreation
262
262
263
263
// ! but we should never assume user will mount our internal data since its the extension and not user's job to do it so we do to compile our extension sources
264
264
if (!system->isDirectory (path (NBL_ARCHIVE_ENTRY.data ())))
265
- mount (smart_refctd_ptr<ILogger>(creationParams.utilities ->getLogger ()), system.get ());
265
+ mount (smart_refctd_ptr<ILogger>(creationParams.utilities ->getLogger ()), system.get (), NBL_ARCHIVE_ENTRY );
266
266
267
267
shaders.vertex = createShader.template operator () < NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" vertex.hlsl" ), IShader::E_SHADER_STAGE::ESS_VERTEX > ();
268
268
shaders.fragment = createShader.template operator () < NBL_CORE_UNIQUE_STRING_LITERAL_TYPE (" fragment.hlsl" ), IShader::E_SHADER_STAGE::ESS_FRAGMENT > ();
You can’t perform that action at this time.
0 commit comments