summaryrefslogtreecommitdiffstats
path: root/src/video_core/guest_driver.cpp
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2020-01-05 17:08:39 +0100
committerFernandoS27 <fsahmkow27@gmail.com>2020-01-24 21:43:29 +0100
commitdc5cfa8d287757dede737553b6f1f8521971c6e2 (patch)
treeba57a2e25d25d46aae22d18f032ac9e70d982ed7 /src/video_core/guest_driver.cpp
parentGuest_driver: Correct compiling errors in GCC. (diff)
downloadyuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.tar
yuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.tar.gz
yuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.tar.bz2
yuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.tar.lz
yuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.tar.xz
yuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.tar.zst
yuzu-dc5cfa8d287757dede737553b6f1f8521971c6e2.zip
Diffstat (limited to 'src/video_core/guest_driver.cpp')
-rw-r--r--src/video_core/guest_driver.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/video_core/guest_driver.cpp b/src/video_core/guest_driver.cpp
index 55b9bd021..1ded52905 100644
--- a/src/video_core/guest_driver.cpp
+++ b/src/video_core/guest_driver.cpp
@@ -1,8 +1,9 @@
-// Copyright 2019 yuzu Emulator Project
+// Copyright 2020 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <algorithm>
+#include <climits>
#include "video_core/guest_driver.h"
@@ -12,13 +13,13 @@ void GuestDriverProfile::DeduceTextureHandlerSize(std::vector<u32>&& bound_offse
if (texture_handler_size_deduced) {
return;
}
- std::size_t size = bound_offsets.size();
+ const std::size_t size = bound_offsets.size();
if (size < 2) {
return;
}
std::sort(bound_offsets.begin(), bound_offsets.end(),
[](const u32& a, const u32& b) { return a < b; });
- u32 min_val = 0xFFFFFFFF; // set to highest possible 32 bit integer;
+ u32 min_val = UINT_MAX;
for (std::size_t i = 1; i < size; i++) {
if (bound_offsets[i] == bound_offsets[i - 1]) {
continue;