diff options
author | Vasily <danilka.pro@gmail.com> | 2015-11-01 19:36:13 +0300 |
---|---|---|
committer | Vasily <danilka.pro@gmail.com> | 2015-11-01 19:36:13 +0300 |
commit | b6c74461d1fec75beff1c7439f11bc94e61fc066 (patch) | |
tree | 6cf80b5d62e2f658347ecad8bc8b18fdfbb33e3e /saedit | |
parent | 8ea3fc8bf3c287c81e93439d9b6c875785839dff (diff) | |
download | evol-tools-b6c74461d1fec75beff1c7439f11bc94e61fc066.tar.gz evol-tools-b6c74461d1fec75beff1c7439f11bc94e61fc066.tar.bz2 evol-tools-b6c74461d1fec75beff1c7439f11bc94e61fc066.tar.xz evol-tools-b6c74461d1fec75beff1c7439f11bc94e61fc066.zip |
saedit: corrected one more size_t usage
Diffstat (limited to 'saedit')
-rw-r--r-- | saedit/sae.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/saedit/sae.h b/saedit/sae.h index 9cbaf09..51f45c1 100644 --- a/saedit/sae.h +++ b/saedit/sae.h @@ -63,7 +63,7 @@ typedef struct { SAEInfo *sae_info_new(); GdkPixbuf *sae_info_ground_new(); -GdkPixbuf* get_sprite_by_index(size_t index, SAEInfo *sae_info); +GdkPixbuf* get_sprite_by_index(int index, SAEInfo *sae_info); gboolean set_up_animation_by_direction(SAEInfo *sae_info, const gchar *direction); #endif |