diff options
| author | 2019-11-08 22:32:52 +0000 | |
|---|---|---|
| committer | 2019-11-08 22:48:42 +0000 | |
| commit | fa0d65fc7b789193d1c8b078f446d3c497e5458b (patch) | |
| tree | 3d261c5f8e5a6a3d7055f06fea467141da64bf9f /externals/microprofile | |
| parent | Merge pull request #3057 from ReinUsesLisp/buffer-sub-data (diff) | |
| download | yuzu-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.h | 6 |
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 | ||
| 815 | inline int MicroProfileLogType(MicroProfileLogEntry Index) | 815 | inline 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 | ||
| 820 | inline uint64_t MicroProfileLogTimerIndex(MicroProfileLogEntry Index) | 820 | inline uint64_t MicroProfileLogTimerIndex(MicroProfileLogEntry Index) |
| @@ -861,12 +861,12 @@ T MicroProfileMax(T a, T b) | |||
| 861 | 861 | ||
| 862 | inline int64_t MicroProfileMsToTick(float fMs, int64_t nTicksPerSecond) | 862 | inline 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 | ||
| 867 | inline float MicroProfileTickToMsMultiplier(int64_t nTicksPerSecond) | 867 | inline float MicroProfileTickToMsMultiplier(int64_t nTicksPerSecond) |
| 868 | { | 868 | { |
| 869 | return 1000.f / nTicksPerSecond; | 869 | return 1000.f / (float)nTicksPerSecond; |
| 870 | } | 870 | } |
| 871 | 871 | ||
| 872 | inline uint16_t MicroProfileGetGroupIndex(MicroProfileToken t) | 872 | inline uint16_t MicroProfileGetGroupIndex(MicroProfileToken t) |