mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Fixed compiling on Linux.
This commit is contained in:
parent
bff6295bb0
commit
0b3a0d0e4e
|
@ -1,5 +1,4 @@
|
||||||
#include "AnimatedImageComponent.h"
|
#include "AnimatedImageComponent.h"
|
||||||
#include "ImageComponent.h"
|
|
||||||
#include "../Log.h"
|
#include "../Log.h"
|
||||||
|
|
||||||
AnimatedImageComponent::AnimatedImageComponent(Window* window) : GuiComponent(window), mEnabled(false)
|
AnimatedImageComponent::AnimatedImageComponent(Window* window) : GuiComponent(window), mEnabled(false)
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
#include "../GuiComponent.h"
|
#include "../GuiComponent.h"
|
||||||
|
#include "ImageComponent.h"
|
||||||
class ImageComponent;
|
|
||||||
|
|
||||||
struct AnimationFrame
|
struct AnimationFrame
|
||||||
{
|
{
|
||||||
|
|
|
@ -54,5 +54,5 @@ void BusyComponent::onSizeChanged()
|
||||||
|
|
||||||
void BusyComponent::reset()
|
void BusyComponent::reset()
|
||||||
{
|
{
|
||||||
mAnimation->reset();
|
//mAnimation->reset();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue