Skip to content

Commit 0f03b36

Browse files
committed
v1.0.2
1 parent 5acbc43 commit 0f03b36

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.11)
22
project (raylib-aseprite
3-
VERSION 1.0.1
3+
VERSION 1.0.2
44
DESCRIPTION "raylib-aseprite"
55
HOMEPAGE_URL "https://github.com/robloach/raylib-aseprite"
66
LANGUAGES C)

include/raylib-aseprite.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ extern "C" {
124124
#pragma GCC diagnostic pop
125125

126126
/**
127-
* The loaded Aseprite data.
127+
* Aseprite object containing a pointer to the ase_t* from cute_aseprite.h.
128128
*
129129
* @see LoadAseprite()
130130
* @see UnloadAseprite()
@@ -134,7 +134,7 @@ struct Aseprite {
134134
};
135135

136136
/**
137-
* Tag information from Aseprite.
137+
* Tag information from an Aseprite object.
138138
*
139139
* @see LoadAsepriteTag()
140140
* @see LoadAsepriteTagFromIndex()
@@ -272,8 +272,8 @@ bool IsAsepriteReady(Aseprite aseprite) {
272272
*/
273273
inline Texture GetAsepriteTexture(Aseprite aseprite) {
274274
if (aseprite.ase == 0) {
275-
TraceLog(LOG_WARNING, "ASEPRITE: Cannot get Texture from non-existant aseprite");
276275
struct Texture texture;
276+
TraceLog(LOG_WARNING, "ASEPRITE: Cannot get Texture from non-existant aseprite");
277277
texture.id = 0;
278278
texture.width = 0;
279279
texture.height = 0;
@@ -508,7 +508,7 @@ void UpdateAsepriteTag(AsepriteTag* tag) {
508508
}
509509

510510
// 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?
512512
tag->timer = (float)(ase->frames[tag->currentFrame].duration_milliseconds) / 1000.0f /* + tag->timer; */;
513513
}
514514

vendor/raylib

Submodule raylib updated 111 files

0 commit comments

Comments
 (0)