Kaynağa Gözat

[c] Formatting.

Mario Zechner 2 yıl önce
ebeveyn
işleme
de52f2a9e3
1 değiştirilmiş dosya ile 5 ekleme ve 5 silme
  1. 5 5
      spine-c/spine-c/src/spine/Atlas.c

+ 5 - 5
spine-c/spine-c/src/spine/Atlas.c

@@ -99,11 +99,11 @@ spAtlasPage *spAtlasPage_create(spAtlas *atlas, const char *name) {
 	spAtlasPage *self = NEW(spAtlasPage);
 	spAtlasPage *self = NEW(spAtlasPage);
 	CONST_CAST(spAtlas *, self->atlas) = atlas;
 	CONST_CAST(spAtlas *, self->atlas) = atlas;
 	MALLOC_STR(self->name, name);
 	MALLOC_STR(self->name, name);
-    self->minFilter = SP_ATLAS_NEAREST;
-    self->magFilter = SP_ATLAS_NEAREST;
-    self->format = SP_ATLAS_RGBA8888;
-    self->uWrap = SP_ATLAS_CLAMPTOEDGE;
-    self->vWrap = SP_ATLAS_CLAMPTOEDGE;
+	self->minFilter = SP_ATLAS_NEAREST;
+	self->magFilter = SP_ATLAS_NEAREST;
+	self->format = SP_ATLAS_RGBA8888;
+	self->uWrap = SP_ATLAS_CLAMPTOEDGE;
+	self->vWrap = SP_ATLAS_CLAMPTOEDGE;
 	return self;
 	return self;
 }
 }