summaryrefslogtreecommitdiffstats
path: root/game/shared/threading.cc
diff options
context:
space:
mode:
Diffstat (limited to 'game/shared/threading.cc')
-rw-r--r--game/shared/threading.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/game/shared/threading.cc b/game/shared/threading.cc
index ad496ee..9e46d17 100644
--- a/game/shared/threading.cc
+++ b/game/shared/threading.cc
@@ -44,9 +44,9 @@ void threading::init(void)
thread_pool_size = num_concurrent_threads;
} else {
if(num_concurrent_threads) {
- thread_pool_size = cxpr::clamp<unsigned int>(std::strtoul(argument, nullptr, 10), 1U, num_concurrent_threads);
+ thread_pool_size = vx::clamp<unsigned int>(std::strtoul(argument, nullptr, 10), 1U, num_concurrent_threads);
} else {
- thread_pool_size = cxpr::max<unsigned int>(std::strtoul(argument, nullptr, 10), 1U);
+ thread_pool_size = vx::max<unsigned int>(std::strtoul(argument, nullptr, 10), 1U);
}
}