mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 15:50:00 -06:00
Add support for saving animated icons
Add support for exporting animated DSi icons as GIF using the header-only gif.h library.
This commit is contained in:
@ -60,6 +60,7 @@ private slots:
|
||||
void done(int r);
|
||||
|
||||
void on_saveIconButton_clicked();
|
||||
void on_saveAnimatedIconButton_clicked();
|
||||
|
||||
void iconSetFrame(int frame);
|
||||
|
||||
@ -68,6 +69,7 @@ private:
|
||||
|
||||
QImage iconImage;
|
||||
QTimeLine* iconTimeline;
|
||||
u32 animatedIconData[64][32*32] = {0};
|
||||
std::vector<QPixmap> animatedIconImages;
|
||||
std::vector<int> animatedSequence;
|
||||
};
|
||||
|
Reference in New Issue
Block a user