Skip to content

Commit 98788c0

Browse files
authored
Merge pull request #151 from defold/sprite-update
Recompiled editor plugin foe Defold 1.6.3+
2 parents d4b325d + 92f0231 commit 98788c0

File tree

6 files changed

+1
-2
lines changed

6 files changed

+1
-2
lines changed
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.

defold-spine/pluginsrc/plugin.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ static dmGameSystemDDF::TextureSet* LoadAtlasFromBuffer(void* buffer, size_t buf
210210
dmDDF::Result e = dmDDF::LoadMessage(buffer, (uint32_t)buffer_size, &texture_set_ddf);
211211
if ( e != dmDDF::RESULT_OK )
212212
{
213-
dmLogError("Failed to load atlas from '%s'", path);
213+
dmLogError("Failed to load atlas from '%s' (result: %d). Has the dmGameSystemDDF::TextureSet file format changed?", path, (int)e);
214214
return 0;
215215
}
216216
return texture_set_ddf;
@@ -691,4 +691,3 @@ static void UpdateRenderData(SpineFile* file)
691691

692692
ro.m_WorldTransform = transform;
693693
}
694-

0 commit comments

Comments
 (0)