Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fallahn committed Oct 13, 2024
1 parent 3b904c5 commit 2559dbe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions samples/golf/src/golf/GolfStateUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3908,7 +3908,7 @@ void GolfState::updateScoreboard(bool updateParDiff)
if (m_sharedData.scoreType == ScoreType::Elimination)
{
cro::String str;
for (auto i = 0; i < 10 - strLen; ++i)
for (auto i = 0u; i < 10 - strLen; ++i)
{
str += " ";
}
Expand Down Expand Up @@ -4053,7 +4053,7 @@ void GolfState::updateScoreboard(bool updateParDiff)
if (m_sharedData.scoreType == ScoreType::Elimination)
{
cro::String str;
for (auto i = 0; i < 8 - strLen; ++i)
for (auto i = 0u; i < 8 - strLen; ++i)
{
str += " ";
}
Expand Down
2 changes: 1 addition & 1 deletion samples/scratchpad/src/MyApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ bool MyApp::initialise()
m_stateStack.registerState<PseutheMenuState>(States::ScratchPad::PseutheMenu);

#ifdef CRO_DEBUG_
//m_stateStack.pushState(States::ScratchPad::BatCat);
//m_stateStack.pushState(States::ScratchPad::TrackOverlay);
m_stateStack.pushState(States::ScratchPad::Scrub);
//m_stateStack.pushState(States::ScratchPad::MainMenu);
#else
Expand Down

0 comments on commit 2559dbe

Please sign in to comment.