Skip to content

Commit

Permalink
Fix narrowing conversion bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Gumball2415 committed Nov 28, 2023
1 parent d09083a commit 030e85d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/FrameAction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

CFrameEditorState::CFrameEditorState(const CFamiTrackerView *pView, int Track) : // // //
Track(Track),
Cursor {static_cast<CMainFrame*>(pView->GetParentFrame())->GetFrameEditor()->GetEditFrame(), (int)pView->GetSelectedChannel()},
Cursor{ static_cast<CMainFrame*>(pView->GetParentFrame())->GetFrameEditor()->GetEditFrame(), static_cast<int>(pView->GetSelectedChannel()) },
OriginalSelection(static_cast<CMainFrame*>(pView->GetParentFrame())->GetFrameEditor()->GetSelection()),
IsSelecting(static_cast<CMainFrame*>(pView->GetParentFrame())->GetFrameEditor()->IsSelecting())
{
Expand Down

0 comments on commit 030e85d

Please # to comment.