aboutsummaryrefslogtreecommitdiffhomepage
path: root/externals/microprofile
diff options
context:
space:
mode:
authorValeri <[email protected]>2022-11-16 20:36:43 +0300
committerGitHub <[email protected]>2022-11-16 20:36:43 +0300
commitfa660190ff2eb95d86110299131e3fbe8847146d (patch)
tree7a6da8454c087bc23c73e32c39f29cab1db78795 /externals/microprofile
parent48b4eca28a397adbaa68d1042262172fcdee6be8 (diff)
downloadyuzu-mainline-fa660190ff2eb95d86110299131e3fbe8847146d.tar.gz
yuzu-mainline-fa660190ff2eb95d86110299131e3fbe8847146d.zip
externals: microprofileui: Remove unused variables
Allows yuzu to be built with Clang 15
Diffstat (limited to 'externals/microprofile')
-rw-r--r--externals/microprofile/microprofileui.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/externals/microprofile/microprofileui.h b/externals/microprofile/microprofileui.h
index 1357a08fd..ca9fe7063 100644
--- a/externals/microprofile/microprofileui.h
+++ b/externals/microprofile/microprofileui.h
@@ -845,8 +845,6 @@ inline void MicroProfileDrawDetailedBars(uint32_t nWidth, uint32_t nHeight, int
MicroProfile& S = *MicroProfileGet();
MP_DEBUG_DUMP_RANGE();
int nY = nBaseY - UI.nOffsetY;
- int64_t nNumBoxes = 0;
- int64_t nNumLines = 0;
uint32_t nFrameNext = (S.nFrameCurrent+1) % MICROPROFILE_MAX_FRAME_HISTORY;
MicroProfileFrameState* pFrameCurrent = &S.Frames[S.nFrameCurrent];
@@ -1149,7 +1147,6 @@ inline void MicroProfileDrawDetailedBars(uint32_t nWidth, uint32_t nHeight, int
}
}
#endif
- ++nNumBoxes;
}
else
{
@@ -1165,7 +1162,6 @@ inline void MicroProfileDrawDetailedBars(uint32_t nWidth, uint32_t nHeight, int
}
nLinesDrawn[nStackPos] = nLineX;
MicroProfileDrawLineVertical(nLineX, fYStart + 0.5f, fYEnd + 0.5f, nColor|UI.nOpacityForeground);
- ++nNumLines;
}
}
nStackPos--;