summaryrefslogtreecommitdiff
path: root/externals/microprofile
diff options
context:
space:
mode:
authorGravatar ReinUsesLisp2019-11-08 22:32:52 +0000
committerGravatar ReinUsesLisp2019-11-08 22:48:42 +0000
commitfa0d65fc7b789193d1c8b078f446d3c497e5458b (patch)
tree3d261c5f8e5a6a3d7055f06fea467141da64bf9f /externals/microprofile
parentMerge pull request #3057 from ReinUsesLisp/buffer-sub-data (diff)
downloadyuzu-fa0d65fc7b789193d1c8b078f446d3c497e5458b.tar.gz
yuzu-fa0d65fc7b789193d1c8b078f446d3c497e5458b.tar.xz
yuzu-fa0d65fc7b789193d1c8b078f446d3c497e5458b.zip
microprofile: Silence conversion warnings
Diffstat (limited to 'externals/microprofile')
-rw-r--r--externals/microprofile/microprofile.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/externals/microprofile/microprofile.h b/externals/microprofile/microprofile.h
index 384863ccc..cdb312b87 100644
--- a/externals/microprofile/microprofile.h
+++ b/externals/microprofile/microprofile.h
@@ -814,7 +814,7 @@ struct MicroProfile
814 814
815inline int MicroProfileLogType(MicroProfileLogEntry Index) 815inline int MicroProfileLogType(MicroProfileLogEntry Index)
816{ 816{
817 return ((MP_LOG_BEGIN_MASK & Index)>>62) & 0x3; 817 return (int)(((MP_LOG_BEGIN_MASK & Index)>>62) & 0x3ULL);
818} 818}
819 819
820inline uint64_t MicroProfileLogTimerIndex(MicroProfileLogEntry Index) 820inline uint64_t MicroProfileLogTimerIndex(MicroProfileLogEntry Index)
@@ -861,12 +861,12 @@ T MicroProfileMax(T a, T b)
861 861
862inline int64_t MicroProfileMsToTick(float fMs, int64_t nTicksPerSecond) 862inline int64_t MicroProfileMsToTick(float fMs, int64_t nTicksPerSecond)
863{ 863{
864 return (int64_t)(fMs*0.001f*nTicksPerSecond); 864 return (int64_t)(fMs*0.001f*(float)nTicksPerSecond);
865} 865}
866 866
867inline float MicroProfileTickToMsMultiplier(int64_t nTicksPerSecond) 867inline float MicroProfileTickToMsMultiplier(int64_t nTicksPerSecond)
868{ 868{
869 return 1000.f / nTicksPerSecond; 869 return 1000.f / (float)nTicksPerSecond;
870} 870}
871 871
872inline uint16_t MicroProfileGetGroupIndex(MicroProfileToken t) 872inline uint16_t MicroProfileGetGroupIndex(MicroProfileToken t)