Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions polymod/backends/OpenFLWithNodeBackend.hx
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class OpenFLNodeModLibrary extends LimeModLibrary
{
return checkIfAssetIsCached(id, type);
}
else if (hasFallback)
else if (fallback != null)
{
return fallback.isLocal(id, type);
}
Expand All @@ -335,7 +335,7 @@ class OpenFLNodeModLibrary extends LimeModLibrary
{
modText = cachedText.get(id);
}
else if (hasFallback)
else if (fallback != null)
{
var path:String = fallback.paths.get(id);
// check the file name for '?' and remove anything after it
Expand Down
Loading