mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 19:32:40 +02:00
use explicit cast to avoid windows warning
This commit is contained in:
parent
a8ad846f2b
commit
955af21aba
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ void Space::setViews(const std::vector<Space::View>& views) {
|
|||
}
|
||||
|
||||
void Space::categorizeAndGetChanges(std::vector<Space::Change>& changes) {
|
||||
uint32_t numProxies = _proxies.size();
|
||||
uint32_t numViews = _views.size();
|
||||
uint32_t numProxies = (uint32_t)_proxies.size();
|
||||
uint32_t numViews = (uint32_t)_views.size();
|
||||
for (uint32_t i = 0; i < numProxies; ++i) {
|
||||
Proxy& proxy = _proxies[i];
|
||||
if (proxy.region < Space::REGION_INVALID) {
|
||||
|
|
Loading…
Reference in a new issue