mirror of
https://github.com/aseprite/aseprite.git
synced 2025-02-06 03:39:51 +00:00
Modified "int tiled" to "bool tiled" in "dirty_new".
This commit is contained in:
parent
156e3adeb3
commit
df59edc3ce
@ -130,7 +130,7 @@ static void swap_hline32(void* image, void* data, int x1, int x2);
|
||||
static void swap_hline16(void* image, void* data, int x1, int x2);
|
||||
static void swap_hline8(void* image, void* data, int x1, int x2);
|
||||
|
||||
Dirty* dirty_new(Image* image, int x1, int y1, int x2, int y2, int tiled)
|
||||
Dirty* dirty_new(Image* image, int x1, int y1, int x2, int y2, bool tiled)
|
||||
{
|
||||
Dirty* dirty;
|
||||
|
||||
|
@ -48,13 +48,13 @@ struct Dirty
|
||||
Image* image;
|
||||
int x1, y1;
|
||||
int x2, y2;
|
||||
int tiled;
|
||||
bool tiled;
|
||||
int rows;
|
||||
DirtyRow* row;
|
||||
Mask* mask;
|
||||
};
|
||||
|
||||
Dirty* dirty_new(Image* image, int x1, int y1, int x2, int y2, int tiled);
|
||||
Dirty* dirty_new(Image* image, int x1, int y1, int x2, int y2, bool tiled);
|
||||
Dirty* dirty_new_copy(Dirty* src);
|
||||
Dirty* dirty_new_from_differences(Image* image, Image* image_diff);
|
||||
void dirty_free(Dirty* dirty);
|
||||
|
Loading…
x
Reference in New Issue
Block a user