commit fd1a6361
Fixed initializers
Changed files
| M | source/code/sago/SagoSprite.cpp before |
diff --git a/source/code/sago/SagoSprite.cpp b/source/code/sago/SagoSprite.cpp
index 9e4176e..39d0ef0 100644
--- a/source/code/sago/SagoSprite.cpp
+++ b/source/code/sago/SagoSprite.cpp
@@ -29,8 +29,8 @@ namespace sago {
struct SagoSprite::SagoSpriteData {
SDL_Texture* tex = nullptr;
- SDL_Rect imgCord;
- SDL_Rect origin = {};
+ SDL_Rect imgCord{};
+ SDL_Rect origin{};
int aniFrames = 0;
int aniFrameTime = 0;
};