mirror of
https://github.com/aseprite/aseprite.git
synced 2025-01-30 06:32:42 +00:00
Fixed warning about probably uninitialized variables.
This commit is contained in:
parent
51fdc7184e
commit
10a58a35ec
@ -125,7 +125,7 @@ protected:
|
|||||||
// rotate mask
|
// rotate mask
|
||||||
if (m_sprite->getMask()->bitmap) {
|
if (m_sprite->getMask()->bitmap) {
|
||||||
Mask* new_mask = mask_new();
|
Mask* new_mask = mask_new();
|
||||||
int x, y;
|
int x = 0, y = 0;
|
||||||
|
|
||||||
switch (m_angle) {
|
switch (m_angle) {
|
||||||
case 180:
|
case 180:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user