Skip to content

Commit

Permalink
Sprite editor frame numbers updated to start from frame "0" to match …
Browse files Browse the repository at this point in the history
…values used in "Set Animation Frame" event
  • Loading branch information
chrismaltby committed Jun 11, 2024
1 parent 2f39982 commit 4631efa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Updated to [GBDK](https://github.com/gbdk-2020/gbdk-2020) version 4.3.0
- When using "Color Only" mode, GB rom file extension changed to ".gbc"
- Sprite editor frame numbers updated to start from frame "0" to match values used in "Set Animation Frame" event

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion src/components/sprites/SpriteAnimationTimelineFrame.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ class Card extends React.Component<CardProps> {
metaspriteId={id}
spriteSheetId={spriteSheetId}
/>
<FrameIndex>{index + 1}</FrameIndex>
<FrameIndex>{index}</FrameIndex>
</CardWrapper>
</div>
)
Expand Down

0 comments on commit 4631efa

Please sign in to comment.