File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.11 )
2
2
project (raylib-aseprite
3
- VERSION 1.0.1
3
+ VERSION 1.0.2
4
4
DESCRIPTION "raylib-aseprite"
5
5
HOMEPAGE_URL "https://github.com/robloach/raylib-aseprite"
6
6
LANGUAGES C )
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ extern "C" {
124
124
#pragma GCC diagnostic pop
125
125
126
126
/**
127
- * The loaded Aseprite data .
127
+ * Aseprite object containing a pointer to the ase_t* from cute_aseprite.h .
128
128
*
129
129
* @see LoadAseprite()
130
130
* @see UnloadAseprite()
@@ -134,7 +134,7 @@ struct Aseprite {
134
134
};
135
135
136
136
/**
137
- * Tag information from Aseprite.
137
+ * Tag information from an Aseprite object .
138
138
*
139
139
* @see LoadAsepriteTag()
140
140
* @see LoadAsepriteTagFromIndex()
@@ -272,8 +272,8 @@ bool IsAsepriteReady(Aseprite aseprite) {
272
272
*/
273
273
inline Texture GetAsepriteTexture (Aseprite aseprite ) {
274
274
if (aseprite .ase == 0 ) {
275
- TraceLog (LOG_WARNING , "ASEPRITE: Cannot get Texture from non-existant aseprite" );
276
275
struct Texture texture ;
276
+ TraceLog (LOG_WARNING , "ASEPRITE: Cannot get Texture from non-existant aseprite" );
277
277
texture .id = 0 ;
278
278
texture .width = 0 ;
279
279
texture .height = 0 ;
@@ -508,7 +508,7 @@ void UpdateAsepriteTag(AsepriteTag* tag) {
508
508
}
509
509
510
510
// Reset the timer.
511
- // TODO: Add the original tag->timer to make up the different in frame time?
511
+ // TODO(RobLoach) : Add the original tag->timer to make up the different in frame time?
512
512
tag -> timer = (float )(ase -> frames [tag -> currentFrame ].duration_milliseconds ) / 1000.0f /* + tag->timer; */ ;
513
513
}
514
514
You can’t perform that action at this time.
0 commit comments