Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Toolset/libraries/revideextensionlibrary.livecodescript
Original file line number Diff line number Diff line change
Expand Up @@ -1240,11 +1240,11 @@ private command __LoadExtension pCacheIndex, pSourceType, pSourceFile, pFolder,
local tFileToLoad
if pSourceType is "lcb" then
local tResources, tModule, tCode
put pFolder & slash & revIDEExtensionBytecodeFilename(true) \
into tModule
put revIDEExtensionBytecodeFilename(true) into tFileToLoad
put pFolder & slash & tFileToLoad into tModule
if there is no file tModule then
put pFolder & slash & revIDEExtensionBytecodeFilename(false) \
into tModule
put revIDEExtensionBytecodeFilename(false) into tFileToLoad
put pFolder & slash & tFileToLoad into tModule
end if
put pFolder & slash & "resources" into tResources
put pFolder & slash & "code" into tCode
Expand All @@ -1258,7 +1258,6 @@ private command __LoadExtension pCacheIndex, pSourceType, pSourceFile, pFolder,
else
load extension from file tModule
end if
put tModule into tFileToLoad
else
set the itemdelimiter to "."
revInternal__LoadLibrary item 1 of pSourceFile, pFolder & slash & pSourceFile
Expand Down