Skip to content

Instantly share code, notes, and snippets.

@tophyr
Created June 5, 2024 23:37
Show Gist options
  • Save tophyr/edd91f5a48aec64dee2c79545dddc7b4 to your computer and use it in GitHub Desktop.
Save tophyr/edd91f5a48aec64dee2c79545dddc7b4 to your computer and use it in GitHub Desktop.
**********************************************************************
** Visual Studio 2022 Developer PowerShell v17.10.1
** Copyright (c) 2022 Microsoft Corporation
**********************************************************************
PS C:\Program Files\Microsoft Visual Studio\2022\Professional> cd C:\Users\csarbora\Projects\
PS C:\Users\csarbora\Projects> cd .\vcpkg\
PS C:\Users\csarbora\Projects\vcpkg> git clean -fdx
PS C:\Users\csarbora\Projects\vcpkg> .\bootstrap-vcpkg.bat
Downloading https://github.com/microsoft/vcpkg-tool/releases/download/2024-04-23/vcpkg.exe -> C:\Users\csarbora\Projects\vcpkg\vcpkg.exe... done.
Validating signature... done.
vcpkg package management program version 2024-04-23-d6945642ee5c3076addd1a42c331bbf4cfc97457
See LICENSE.txt for license information.
Telemetry
---------
vcpkg collects usage data in order to help us improve your experience.
The data collected by Microsoft is anonymous.
You can opt-out of telemetry by re-running the bootstrap-vcpkg script with -disableMetrics,
passing --disable-metrics to vcpkg on the command line,
or by setting the VCPKG_DISABLE_METRICS environment variable.
Read more about vcpkg telemetry at docs/about/privacy.md
PS C:\Users\csarbora\Projects\vcpkg> cd ..
PS C:\Users\csarbora\Projects> cd .\Descent3\
PS C:\Users\csarbora\Projects\Descent3> git clean -fdx
PS C:\Users\csarbora\Projects\Descent3> git log -n 1
commit 1e3109cd15a74633df549a700720aad10b46618b (HEAD, lgt2x/windows-ninja)
Author: Louis Gombert <louisgombert@gmail.com>
Date: Wed Jun 5 19:37:00 2024 +0200
Windows CMake preset: use ninja generator
PS C:\Users\csarbora\Projects\Descent3> cmake --preset win32 -D ENABLE_LOGGER=ON
Preset CMake variables:
CMAKE_TOOLCHAIN_FILE:FILEPATH="C:\Program Files\Microsoft Visual Studio\2022\Professional\VC\vcpkg/scripts/buildsystems/vcpkg.cmake"
VCPKG_TARGET_TRIPLET="x86-windows"
-- Running vcpkg install
Fetching registry information from https://github.com/microsoft/vcpkg (HEAD)...
Detecting compiler hash for triplet x64-windows...
Compiler found: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x64/cl.exe
Detecting compiler hash for triplet x86-windows...
Compiler found: C:/Program Files (x86)/Microsoft Visual Studio/2022/BuildTools/VC/Tools/MSVC/14.39.33519/bin/Hostx64/x86/cl.exe
The following packages will be built and installed:
gtest:x86-windows@1.14.0 -- C:\Users\csarbora\AppData\Local\vcpkg\registries\git-trees\c6dde67781b31b556e0868cc9f45f3eec59dc2a8
* vcpkg-cmake:x64-windows@2023-05-04 -- C:\Users\csarbora\AppData\Local\vcpkg\registries\git-trees\88a7058fc7fa73a9c4c99cfcae9d79e2abf87a5a
* vcpkg-cmake-config:x64-windows@2022-02-06#1 -- C:\Users\csarbora\AppData\Local\vcpkg\registries\git-trees\8d54cc4f487d51b655abec5f9c9c3f86ca83311f
Additional packages (*) will be modified to complete this operation.
Restored 4 package(s) from C:\Users\csarbora\AppData\Local\vcpkg\archives in 581 ms. Use --debug to see more details.
Installing 1/4 vcpkg-cmake-config:x64-windows@2022-02-06#1...
Elapsed time to handle vcpkg-cmake-config:x64-windows: 19.1 ms
Installing 2/4 vcpkg-cmake:x64-windows@2023-05-04...
Elapsed time to handle vcpkg-cmake:x64-windows: 24 ms
vcpkg-cmake:x64-windows package ABI: 400913569801837828556af80661eb78081a9a95a63c04b380a86ea28948fced
Installing 3/4 gtest:x86-windows@1.14.0...
Elapsed time to handle gtest:x86-windows: 159 ms
gtest:x86-windows package ABI: 72a43a97497da3639f344072fa38d5cd729ee1adfca7a9a6d235b241234a44dc
Installing 4/4 zlib:x86-windows@1.3...
Elapsed time to handle zlib:x86-windows: 52.4 ms
zlib:x86-windows package ABI: 836b436953338bf54942210c3d3356911dd7fd6dec11a9005e00b5f90f37da41
Total install time: 254 ms
The package gtest is compatible with built-in CMake targets:
enable_testing()
find_package(GTest CONFIG REQUIRED)
target_link_libraries(main PRIVATE GTest::gtest GTest::gtest_main GTest::gmock GTest::gmock_main)
add_test(AllTestsInMain main)
The package zlib is compatible with built-in CMake targets:
find_package(ZLIB REQUIRED)
target_link_libraries(main PRIVATE ZLIB::ZLIB)
-- Running vcpkg install - done
-- The C compiler identification is MSVC 19.40.33811.0
-- The CXX compiler identification is MSVC 19.40.33811.0
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.40.33807/bin/Hostx64/x64/cl.exe - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/Tools/MSVC/14.40.33807/bin/Hostx64/x64/cl.exe - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found ZLIB: optimized;C:/Users/csarbora/Projects/Descent3/builds/win32/vcpkg_installed/x86-windows/lib/zlib.lib;debug;C:/Users/csarbora/Projects/Descent3/builds/win32/vcpkg_installed/x86-windows/debug/lib/zlibd.lib (found version "1.3.0")
Enabling Logging
-- Configuring done (22.6s)
-- Generating done (2.7s)
-- Build files have been written to: C:/Users/csarbora/Projects/Descent3/builds/win32
PS C:\Users\csarbora\Projects\Descent3> cmake --build --preset win32 --config Debug
[2/464] Generating Descent3/d3_version.h, ALL
-- Git hash is 1e3109c
[13/464] Building CXX object libmve\CMakeFiles\libmve.dir\Debug\mveasm.cpp.obj
C:\Users\csarbora\Projects\Descent3\libmve\mveasm.cpp(128): warning C4244: '=': conversion from '__int64' to 'int', possible loss of data
[14/464] Building CXX object czip\CMakeFiles\czip.dir\Debug\CZip.cpp.obj
C:\Users\csarbora\Projects\Descent3\czip\CZip.cpp(272): warning C4267: '=': conversion from 'size_t' to 'uint8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\czip\CZip.cpp(318): warning C4267: 'initializing': conversion from 'size_t' to 'uint8_t', possible loss of data
[15/464] Building CXX object vecmat\CMakeFiles\vecmat.dir\Debug\vector.cpp.obj
C:\Users\csarbora\Projects\Descent3\vecmat\vector.cpp(656): warning C4311: 'type cast': pointer truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\vecmat\vector.cpp(656): warning C4302: 'type cast': truncation from 'vector *' to 'unsigned int'
[21/464] Building CXX object unzip\CMakeFiles\unzip.dir\Debug\unzip.cpp.obj
C:\Users\csarbora\Projects\Descent3\unzip\unzip.cpp(563): warning C4267: '=': conversion from 'size_t' to 'uInt', possible loss of data
C:\Users\csarbora\Projects\Descent3\unzip\unzip.cpp(645): warning C4267: '=': conversion from 'size_t' to 'uInt', possible loss of data
C:\Users\csarbora\Projects\Descent3\unzip\unzip.cpp(655): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\unzip\unzip.cpp(670): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[23/464] Building CXX object czip\CMakeFiles\czip.dir\Debug\BitIO.cpp.obj
C:\Users\csarbora\Projects\Descent3\czip\BitIO.cpp(320): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\czip\BitIO.cpp(339): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[30/464] Building CXX object bitmap\CMakeFiles\bitmap.dir\Debug\NewBitmap.cpp.obj
C:\Users\csarbora\Projects\Descent3\bitmap\NewBitmap.cpp(27): warning C4311: 'type cast': pointer truncation from 'unsigned char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\bitmap\NewBitmap.cpp(27): warning C4302: 'type cast': truncation from 'unsigned char *' to 'unsigned int'
[31/464] Building CXX object 2dlib\CMakeFiles\2dlib.dir\Debug\memsurf.cpp.obj
C:\Users\csarbora\Projects\Descent3\2dlib\memsurf.cpp(190): warning C4311: 'type cast': pointer truncation from 'ddgr_surface *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\2dlib\memsurf.cpp(190): warning C4302: 'type cast': truncation from 'ddgr_surface *' to 'unsigned int'
[34/464] Building CXX object 2dlib\CMakeFiles\2dlib.dir\Debug\font.cpp.obj
C:\Users\csarbora\Projects\Descent3\2dlib\font.cpp(520): warning C4244: '=': conversion from 'int16_t' to 'uint8_t', possible loss of data
[36/464] Building CXX object 2dlib\CMakeFiles\2dlib.dir\Debug\pentext.cpp.obj
C:\Users\csarbora\Projects\Descent3\2dlib\pentext.cpp(222): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[39/464] Building CXX object netcon\inetfile\CMakeFiles\inetfile.dir\Debug\CFtp.cpp.obj
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\CFtp.cpp(184): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\CFtp.cpp(480): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\CFtp.cpp(590): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
[42/464] Building CXX object 2dlib\CMakeFiles\2dlib.dir\Debug\surface.cpp.obj
C:\Users\csarbora\Projects\Descent3\2dlib\surface.cpp(757): warning C4311: 'type cast': pointer truncation from 'ddgr_surface_node *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\2dlib\surface.cpp(757): warning C4302: 'type cast': truncation from 'ddgr_surface_node *' to 'unsigned int'
[43/464] Building CXX object mem\CMakeFiles\mem.dir\Debug\mem.cpp.obj
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(388): warning C4311: 'type cast': pointer truncation from 'HANDLE' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(388): warning C4302: 'type cast': truncation from 'HANDLE' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(475): warning C4312: 'type cast': conversion from 'unsigned int' to 'void *' of greater size
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(538): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(538): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(574): warning C4312: 'type cast': conversion from 'unsigned int' to 'void *' of greater size
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(623): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(640): warning C4312: 'type cast': conversion from 'unsigned int' to 'void *' of greater size
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(673): warning C4312: 'type cast': conversion from 'unsigned int' to 'void *' of greater size
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(676): warning C4244: 'return': conversion from 'SIZE_T' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(867): warning C4311: 'type cast': pointer truncation from 'void *' to 'uint32_t'
C:\Users\csarbora\Projects\Descent3\mem\mem.cpp(867): warning C4302: 'type cast': truncation from 'void *' to 'uint32_t'
[44/464] Building CXX object netcon\inetfile\CMakeFiles\inetfile.dir\Debug\Chttpget.cpp.obj
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\Chttpget.cpp(238): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\Chttpget.cpp(335): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\Chttpget.cpp(518): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\inetfile\Chttpget.cpp(622): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
[46/464] Building CXX object scripts\CMakeFiles\clutter.dir\Debug\clutter.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(297): warning C4101: 'mag': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(300): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(318): warning C4101: 'mag': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(321): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(398): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(449): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(514): warning C4101: 'amount': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(546): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\clutter.cpp(580): warning C4101: 'i': unreferenced local variable
[48/464] Building CXX object dd_video\CMakeFiles\dd_video.dir\Debug\vidWin32FS.cpp.obj
C:\Users\csarbora\Projects\Descent3\dd_video\vidWin32FS.cpp(202): warning C4311: 'type cast': pointer truncation from 'LPDIRECTDRAW' to 'uint32_t'
C:\Users\csarbora\Projects\Descent3\dd_video\vidWin32FS.cpp(202): warning C4302: 'type cast': truncation from 'LPDIRECTDRAW' to 'uint32_t'
[49/464] Building CXX object scripts\CMakeFiles\aigame2.dir\Debug\aigame2.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(908): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1037): warning C4101: 'name': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1036): warning C4101: 'buf': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1375): warning C4102: 'retry_set_state': unreferenced label
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1370): warning C4101: 'name': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1369): warning C4101: 'buf': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1367): warning C4101: 'id': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame2.cpp(1367): warning C4101: 'i': unreferenced local variable
[50/464] Building CXX object scripts\CMakeFiles\aigame4.dir\Debug\aigame4.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame4.cpp(926): warning C4101: 'collision_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame4.cpp(927): warning C4101: 'collision_normal': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\aigame4.cpp(1180): warning C4390: ';': empty controlled statement found; is this the intent?
[51/464] Building CXX object scripts\CMakeFiles\barney.dir\Debug\barney.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\barney.cpp(186): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[52/464] Building CXX object scripts\CMakeFiles\RudeAwakening.dir\Debug\RudeAwakening.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\RudeAwakening.cpp(275): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[53/464] Building CXX object scripts\CMakeFiles\CellTestLevel.dir\Debug\CellTestLevel.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\CellTestLevel.cpp(188): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[54/464] Building CXX object scripts\CMakeFiles\LEVEL0.dir\Debug\LEVEL0.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\LEVEL0.cpp(460): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[55/464] Building CXX object scripts\CMakeFiles\Y2K.dir\Debug\Y2K.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Y2K.cpp(198): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[56/464] Building CXX object scripts\CMakeFiles\Paranoia.dir\Debug\Paranoia.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Paranoia.cpp(188): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[57/464] Building CXX object scripts\CMakeFiles\Geodomes.dir\Debug\Geodomes.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Geodomes.cpp(239): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[58/464] Building CXX object scripts\CMakeFiles\BossCamera.dir\Debug\BossCamera.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\BossCamera.cpp(195): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[59/464] Building CXX object scripts\CMakeFiles\LevelS1.dir\Debug\LevelS1.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\LevelS1.cpp(315): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[60/464] Building CXX object scripts\CMakeFiles\InfernalBolt.dir\Debug\InfernalBolt.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\InfernalBolt.cpp(244): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[61/464] Building CXX object scripts\CMakeFiles\Mysterious_Isle.dir\Debug\Mysterious_Isle.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Mysterious_Isle.cpp(415): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[62/464] Building CXX object scripts\CMakeFiles\level4.dir\Debug\level4.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level4.cpp(515): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[63/464] Building CXX object scripts\CMakeFiles\LEVEL15.dir\Debug\LEVEL15.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\LEVEL15.cpp(1525): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[64/464] Building CXX object scripts\CMakeFiles\level13.dir\Debug\level13.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level13.cpp(1377): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[65/464] Building CXX object scripts\CMakeFiles\Merc02.dir\Debug\Merc02.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc02.cpp(1116): warning C4101: 'landing_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc02.cpp(1115): warning C4101: 'landing_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc02.cpp(1253): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[66/464] Building CXX object scripts\CMakeFiles\level11.dir\Debug\level11.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level11.cpp(1750): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[67/464] Building CXX object cfile\CMakeFiles\cfile.dir\Debug\cfile.cpp.obj
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(166): warning C4018: '<': signed/unsigned mismatch
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(696): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(892): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(987): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1002): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1084): warning C4018: '<=': signed/unsigned mismatch
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1199): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1199): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1200): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1200): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1219): warning C4018: '<': signed/unsigned mismatch
C:\Users\csarbora\Projects\Descent3\cfile\cfile.cpp(1241): warning C4018: '<': signed/unsigned mismatch
[68/464] Building CXX object scripts\CMakeFiles\Merc7.dir\Debug\Merc7.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc7.cpp(1370): warning C4018: '<': signed/unsigned mismatch
C:\Users\csarbora\Projects\Descent3\scripts\Merc7.cpp(2081): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[69/464] Building CXX object scripts\CMakeFiles\level2.dir\Debug\level2.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level2.cpp(1098): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[70/464] Building CXX object scripts\CMakeFiles\Polaris.dir\Debug\Polaris.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Polaris.cpp(246): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[71/464] Building CXX object scripts\CMakeFiles\merc5.dir\Debug\merc5.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\merc5.cpp(1073): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[75/464] Building CXX object bitmap\CMakeFiles\bitmap.dir\Debug\bitmain.cpp.obj
C:\Users\csarbora\Projects\Descent3\bitmap\bitmain.cpp(377): warning C4267: 'initializing': conversion from 'size_t' to 'uint32_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\bitmap\bitmain.cpp(645): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\bitmap\bitmain.cpp(685): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\bitmap\bitmain.cpp(1452): warning C4311: 'type cast': pointer truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\bitmap\bitmain.cpp(1452): warning C4302: 'type cast': truncation from 'int *' to 'unsigned int'
[80/464] Building CXX object scripts\CMakeFiles\Level6.dir\Debug\Level6.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Level6.cpp(1416): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[81/464] Building CXX object dd_grwin32\CMakeFiles\dd_grwin32.dir\Debug\ddgrWin32API.cpp.obj
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(281): warning C4311: 'type cast': pointer truncation from 'LPDIRECTDRAWSURFACE' to 'uint32_t'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(281): warning C4302: 'type cast': truncation from 'LPDIRECTDRAWSURFACE' to 'uint32_t'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(281): warning C4311: 'type cast': pointer truncation from 'LPDIRECTDRAWSURFACE' to 'uint32_t'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(281): warning C4302: 'type cast': truncation from 'LPDIRECTDRAWSURFACE' to 'uint32_t'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(299): warning C4311: 'type cast': pointer truncation from 'LPDIRECTDRAW' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(299): warning C4302: 'type cast': truncation from 'LPDIRECTDRAW' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(301): warning C4311: 'type cast': pointer truncation from 'LPDIRECTDRAW' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32API.cpp(301): warning C4302: 'type cast': truncation from 'LPDIRECTDRAW' to 'unsigned int'
[82/464] Building CXX object scripts\CMakeFiles\level17.dir\Debug\level17.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level17.cpp(1561): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[84/464] Building CXX object scripts\CMakeFiles\level8.dir\Debug\level8.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level8.cpp(937): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[86/464] Building CXX object grtext\CMakeFiles\grtext.dir\Debug\textaux.cpp.obj
C:\Users\csarbora\Projects\Descent3\grtext\textaux.cpp(172): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[87/464] Building CXX object misc\CMakeFiles\misc.dir\Debug\pstring.cpp.obj
C:\Users\csarbora\Projects\Descent3\misc\pstring.cpp(72): warning C4018: '<': signed/unsigned mismatch
[88/464] Building CXX object scripts\CMakeFiles\myPowerHouse.dir\Debug\myPowerHouse.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\myPowerHouse.cpp(195): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[89/464] Building CXX object scripts\CMakeFiles\SewerRat.dir\Debug\SewerRat.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\SewerRat.cpp(198): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[90/464] Building CXX object scripts\CMakeFiles\Level16.dir\Debug\Level16.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Level16.cpp(280): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[93/464] Building CXX object scripts\CMakeFiles\Merc3.dir\Debug\Merc3.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc3.cpp(1956): warning C4101: 'landing_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc3.cpp(1955): warning C4101: 'landing_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc3.cpp(2011): warning C4101: 'landing_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc3.cpp(2010): warning C4101: 'landing_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc3.cpp(2403): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[94/464] Building CXX object ddebug\CMakeFiles\ddebug.dir\Debug\windebug.cpp.obj
C:\Users\csarbora\Projects\Descent3\ddebug\windebug.cpp(937): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[95/464] Building CXX object scripts\CMakeFiles\level1.dir\Debug\level1.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level1.cpp(493): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[96/464] Building CXX object scripts\CMakeFiles\orbital.dir\Debug\orbital.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\orbital.cpp(396): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[97/464] Building CXX object scripts\CMakeFiles\level14.dir\Debug\level14.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level14.cpp(917): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[98/464] Building CXX object scripts\CMakeFiles\CanyonsCTF.dir\Debug\CanyonsCTF.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\CanyonsCTF.cpp(186): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[99/464] Building CXX object scripts\CMakeFiles\level3.dir\Debug\level3.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level3.cpp(1033): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[100/464] Building CXX object scripts\CMakeFiles\AIGame3.dir\Debug\AIGame3.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(314): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(2221): warning C4101: 'pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(2561): warning C4101: 'weapon_id': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(2590): warning C4101: 'vel': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(2618): warning C4101: 'end_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3091): warning C4101: 'flags': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3216): warning C4101: 'landed_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3215): warning C4101: 'landed_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3315): warning C4101: 'leader_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3352): warning C4101: 'uvec': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3355): warning C4101: 'new_mode': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(3356): warning C4101: 'vel': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(4793): warning C4101: 'landing_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(4792): warning C4101: 'landing_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(5508): warning C4101: 'pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(5737): warning C4101: 'vel': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(5766): warning C4101: 'end_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(6182): warning C4101: 'flags': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(6367): warning C4101: 'landing_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(6366): warning C4101: 'landing_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(6397): warning C4101: 'flags': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(7019): warning C4101: 'flags': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(7126): warning C4101: 'next_frame': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame3.cpp(7343): warning C4101: 'my_max_speed': unreferenced local variable
[101/464] Building CXX object win32\CMakeFiles\win32.dir\Debug\windata.cpp.obj
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(86): warning C4311: 'type cast': pointer truncation from 'HKEY' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(86): warning C4302: 'type cast': truncation from 'HKEY' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(106): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(121): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(127): warning C4311: 'type cast': pointer truncation from 'HKEY' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(127): warning C4302: 'type cast': truncation from 'HKEY' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(140): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(143): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(149): warning C4311: 'type cast': pointer truncation from 'HKEY' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(149): warning C4302: 'type cast': truncation from 'HKEY' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(164): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(186): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(234): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
C:\Users\csarbora\Projects\Descent3\win32\windata.cpp(249): warning C4312: 'type cast': conversion from 'unsigned int' to 'HKEY' of greater size
[102/464] Building CXX object scripts\CMakeFiles\level5.dir\Debug\level5.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level5.cpp(798): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[103/464] Building CXX object scripts\CMakeFiles\Quadsomniac.dir\Debug\Quadsomniac.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Quadsomniac.cpp(275): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[104/464] Building CXX object scripts\CMakeFiles\ChrisTest.dir\Debug\ChrisTest.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\ChrisTest.cpp(213): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[105/464] Building CXX object dd_video\CMakeFiles\dd_video.dir\Debug\video_win32.cpp.obj
C:\Users\csarbora\Projects\Descent3\dd_video\video_win32.cpp(189): warning C4312: 'type cast': conversion from 'unsigned int' to 'HWND' of greater size
[107/464] Building CXX object scripts\CMakeFiles\TrainingMission.dir\Debug\TrainingMission.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\TrainingMission.cpp(728): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[108/464] Building CXX object scripts\CMakeFiles\Merc4.dir\Debug\Merc4.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc4.cpp(863): warning C4101: 'n': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc4.cpp(930): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc4.cpp(930): warning C4101: 'n': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc4.cpp(1047): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[109/464] Building CXX object scripts\CMakeFiles\level7.dir\Debug\level7.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level7.cpp(919): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[110/464] Building CXX object scripts\CMakeFiles\Level9.dir\Debug\Level9.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Level9.cpp(830): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[111/464] Building CXX object scripts\CMakeFiles\PiccuStation.dir\Debug\PiccuStation.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\PiccuStation.cpp(1059): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[113/464] Building CXX object scripts\CMakeFiles\HalfPipe.dir\Debug\HalfPipe.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\HalfPipe.cpp(235): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[114/464] Building CXX object scripts\CMakeFiles\Inversion.dir\Debug\Inversion.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Inversion.cpp(476): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[115/464] Building CXX object scripts\CMakeFiles\BatteriesIncluded.dir\Debug\BatteriesIncluded.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\BatteriesIncluded.cpp(573): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[116/464] Building CXX object scripts\CMakeFiles\Merc6.dir\Debug\Merc6.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc6.cpp(1037): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[117/464] Building CXX object scripts\CMakeFiles\AIGame.dir\Debug\AIGame.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(1876): warning C4101: 'gen_perc': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(1876): warning C4101: 'perc_chance': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(2112): warning C4101: 'm': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(2108): warning C4101: 'target_handle': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(2177): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(3117): warning C4101: 'best_dp': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4133): warning C4101: 'belly_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4132): warning C4101: 'head_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4135): warning C4101: 'flame_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4134): warning C4101: 'turret_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4173): warning C4101: 'orient': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4268): warning C4101: 'belly_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4267): warning C4101: 'head_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4271): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4270): warning C4101: 'flame_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(4269): warning C4101: 'turret_object': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5047): warning C4101: 'done': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5365): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5639): warning C4390: ';': empty controlled statement found; is this the intent?
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5603): warning C4101: 'obj_type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5658): warning C4101: 'sad_sound': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5693): warning C4101: 'pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5689): warning C4101: 'fvec': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5691): warning C4101: 'f_valid': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5694): warning C4101: 'room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5690): warning C4101: 'vel': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5692): warning C4101: 'orient': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5874): warning C4101: 'data': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(5889): warning C4101: 'dir_index': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(6657): warning C4101: 'pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(6656): warning C4101: 'room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7135): warning C4101: 'movement_type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7127): warning C4101: 'fate': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7125): warning C4101: 'end_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7129): warning C4101: 'ceiling_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7128): warning C4101: 'start_room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7132): warning C4101: 'vel': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7126): warning C4101: 'flags': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7124): warning C4101: 'start_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7567): warning C4101: 'gen_perc': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7567): warning C4101: 'perc_chance': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7570): warning C4101: 'count_num': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(7920): warning C4101: 'i': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(8219): warning C4101: 'room': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(8914): warning C4101: 'end_pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10472): warning C4101: 'pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10590): warning C4101: 'pos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10855): warning C4101: 'o1': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10855): warning C4101: 'otemp': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10856): warning C4101: 'vtemp': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10855): warning C4101: 'o': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\AIGame.cpp(10945): warning C4101: 'type': unreferenced local variable
[118/464] Building CXX object scripts\CMakeFiles\level10.dir\Debug\level10.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\level10.cpp(1326): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[119/464] Building CXX object scripts\CMakeFiles\Level12.dir\Debug\Level12.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Level12.cpp(1575): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[120/464] Building CXX object scripts\CMakeFiles\Merc1.dir\Debug\Merc1.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\Merc1.cpp(1746): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[121/464] Building CXX object scripts\CMakeFiles\levelS2.dir\Debug\levelS2.cpp.obj
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(1562): warning C4101: 'type': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\DallasFuncs.cpp(6656): warning C4101: 'playerpos': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\scripts\levelS2.cpp(1584): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[130/464] Building CXX object dd_grwin32\CMakeFiles\dd_grwin32.dir\Debug\ddgrWin32GDI.cpp.obj
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32GDI.cpp(441): warning C4311: 'type cast': pointer truncation from 'HBITMAP' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32GDI.cpp(441): warning C4302: 'type cast': truncation from 'HBITMAP' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\dd_grwin32\ddgrWin32GDI.cpp(572): warning C4312: 'type cast': conversion from 'unsigned int' to 'HWND' of greater size
[131/464] Building CXX object misc\CMakeFiles\misc.dir\Debug\error.cpp.obj
C:\Users\csarbora\Projects\Descent3\misc\error.cpp(127): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[132/464] Building CXX object win32\CMakeFiles\win32.dir\Debug\wincon.cpp.obj
C:\Users\csarbora\Projects\Descent3\win32\wincon.cpp(109): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\win32\wincon.cpp(210): warning C4244: 'argument': conversion from 'WPARAM' to 'UINT', possible loss of data
C:\Users\csarbora\Projects\Descent3\win32\wincon.cpp(213): warning C4244: 'argument': conversion from 'WPARAM' to 'UINT', possible loss of data
C:\Users\csarbora\Projects\Descent3\win32\wincon.cpp(280): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\win32\wincon.cpp(296): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\win32\wincon.cpp(371): warning C4267: '=': conversion from 'size_t' to 'char', possible loss of data
[135/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcprecord.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcprecord.cpp(506): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcprecord.cpp(516): warning C4267: '=': conversion from 'size_t' to 'uint8_t', possible loss of data
[137/464] Building CXX object netgames\hyperanarchy\CMakeFiles\hyperanarchy.dir\Debug\hyperanarchy.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(549): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(551): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(553): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(555): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(557): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(595): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(599): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(602): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(605): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(608): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(615): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(979): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(1003): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(1032): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hyperanarchy\hyperanarchy.cpp(1057): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[138/464] Building CXX object netgames\hoard\CMakeFiles\hoard.dir\Debug\hoard.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(506): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(508): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(510): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(512): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(514): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(552): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(556): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(559): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(562): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(565): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(572): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(1109): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(1133): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(1161): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\hoard\hoard.cpp(1185): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[140/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfchudmessages.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[141/464] Building CXX object netgames\entropy\CMakeFiles\entropy.dir\Debug\EntropyPackets.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[142/464] Building CXX object win32\CMakeFiles\win32.dir\Debug\winapp.cpp.obj
C:\Users\csarbora\Projects\Descent3\win32\winapp.cpp(490): warning C4996: 'GetVersionExA': was declared deprecated
[143/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcfunctions.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[146/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcserver.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[147/464] Building CXX object netgames\roboanarchy\CMakeFiles\roboanarchy.dir\Debug\roboanarchy.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(611): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(634): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(663): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(688): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(739): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(741): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(743): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(745): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(747): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(783): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(786): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(789): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(792): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(795): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\roboanarchy\roboanarchy.cpp(802): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[148/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\gamefilepage.cpp.obj
C:\Users\csarbora\Projects\Descent3\manage\gamefilepage.cpp(49): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\gamefilepage.cpp(53): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
[149/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcvirtual.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[151/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcpackets.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcpackets.cpp(396): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcpackets.cpp(397): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcpackets.cpp(398): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcpackets.cpp(399): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[152/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfctimer.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[153/464] Building CXX object netgames\anarchy\CMakeFiles\anarchy.dir\Debug\anarchy.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(616): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(639): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(668): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(693): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(744): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(746): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(748): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(750): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(752): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(788): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(791): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(794): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(797): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(800): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\anarchy\anarchy.cpp(807): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[154/464] Building CXX object netgames\ctf\CMakeFiles\ctf.dir\Debug\ctf.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1515): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1540): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1568): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1592): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1648): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1650): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1652): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1654): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1656): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1696): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1699): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1702): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1705): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1708): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\ctf\ctf.cpp(1715): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[155/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcmenu.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[156/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcinputcommand.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[157/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\doorpage.cpp.obj
C:\Users\csarbora\Projects\Descent3\manage\doorpage.cpp(212): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\doorpage.cpp(222): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\doorpage.cpp(226): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
[160/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\ssl_lib.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\ssl_lib.cpp(64): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[163/464] Building CXX object netgames\entropy\CMakeFiles\entropy.dir\Debug\EntropyRoom.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[164/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcbase.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(1784): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(2270): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(2292): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(2313): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(3250): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(3846): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(3865): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(3884): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(3903): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(3922): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(4331): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(4360): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcbase.cpp(5066): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[165/464] Building CXX object grtext\CMakeFiles\grtext.dir\Debug\grtext.cpp.obj
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(472): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(484): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(487): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(487): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(498): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(634): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(767): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(811): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(861): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grtext.cpp(950): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[166/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcremote.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(215): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(274): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(286): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(350): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(424): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(465): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcremote.cpp(559): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[167/464] Building CXX object netgames\entropy\CMakeFiles\entropy.dir\Debug\EntropyBase.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1501): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1524): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1552): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1577): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1937): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1939): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1941): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1943): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1945): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1986): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1989): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1992): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1995): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(1998): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\entropy\EntropyBase.cpp(2005): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[168/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcpinfo.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[169/464] Building CXX object stream_audio\CMakeFiles\stream_audio.dir\Debug\osfarchive.cpp.obj
C:\Users\csarbora\Projects\Descent3\stream_audio\osfarchive.cpp(98): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\stream_audio\osfarchive.cpp(192): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[170/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\idmfc.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[171/464] Building CXX object netgames\hoard\CMakeFiles\hoard.dir\Debug\hoard_ui.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[172/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfccfg.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfccfg.cpp(513): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
[173/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcui.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[174/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\megapage.cpp.obj
C:\Users\csarbora\Projects\Descent3\manage\megapage.cpp(93): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\megapage.cpp(99): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
[176/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\texpage.cpp.obj
C:\Users\csarbora\Projects\Descent3\manage\texpage.cpp(324): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\texpage.cpp(329): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\texpage.cpp(334): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
[177/464] Building CXX object netgames\tanarchy\CMakeFiles\tanarchy.dir\Debug\tanarchy.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(723): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(746): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(774): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(799): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(998): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1000): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1002): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1004): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1006): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1045): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1048): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1051): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1054): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1057): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\tanarchy\tanarchy.cpp(1064): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[178/464] Building CXX object netgames\coop\CMakeFiles\coop.dir\Debug\coop.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[179/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcinterface.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[180/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcstats.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcstats.cpp(609): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcstats.cpp(790): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[181/464] Building CXX object netgames\monsterball\CMakeFiles\monsterball.dir\Debug\monsterball.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1352): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1354): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1356): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1358): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1360): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1362): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1402): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1405): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1408): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1411): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1414): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1417): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1424): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1541): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1565): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1597): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\monsterball\monsterball.cpp(1621): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[182/464] Building CXX object netgames\dmfc\CMakeFiles\dmfc.dir\Debug\dmfcclient.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): warning C4099: 'PInfo': type name first seen using 'struct' now seen using 'class'
C:\Users\csarbora\Projects\Descent3\netgames\dmfc\dmfcinternal.h(331): note: see declaration of 'PInfo'
[183/464] Building CXX object grtext\CMakeFiles\grtext.dir\Debug\grfont.cpp.obj
C:\Users\csarbora\Projects\Descent3\grtext\grfont.cpp(208): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grfont.cpp(210): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grfont.cpp(212): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\grtext\grfont.cpp(298): warning C4312: 'type cast': conversion from 'unsigned int' to 'FONTFILE' of greater size
C:\Users\csarbora\Projects\Descent3\grtext\grfont.cpp(466): warning C4312: 'type cast': conversion from 'unsigned int' to 'FONTFILE' of greater size
C:\Users\csarbora\Projects\Descent3\grtext\grfont.cpp(555): warning C4312: 'type cast': conversion from 'unsigned int' to 'FONTFILE' of greater size
[184/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\pagelock.cpp.obj
C:\Users\csarbora\Projects\Descent3\manage\pagelock.cpp(275): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\pagelock.cpp(665): warning C4311: 'type cast': pointer truncation from 'mngs_Pagelock *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\pagelock.cpp(665): warning C4302: 'type cast': truncation from 'mngs_Pagelock *' to 'unsigned int'
[186/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\sndrender.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\sndrender.cpp(99): warning C4311: 'type cast': pointer truncation from 'llsGeometry *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\sndrender.cpp(99): warning C4302: 'type cast': truncation from 'llsGeometry *' to 'unsigned int'
[191/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\weaponpage.cpp.obj
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(430): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(435): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(439): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(449): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(457): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(461): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(469): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(473): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(622): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(629): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(634): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\weaponpage.cpp(639): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
[193/464] Building CXX object ddio\CMakeFiles\ddio.dir\Debug\winio.cpp.obj
C:\Users\csarbora\Projects\Descent3\ddio\winio.cpp(198): warning C4267: 'argument': conversion from 'size_t' to 'DWORD', possible loss of data
[194/464] Building CXX object ddio\CMakeFiles\ddio.dir\Debug\winfile.cpp.obj
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(280): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(290): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(388): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(418): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(501): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(526): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winfile.cpp(529): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[196/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIEdit.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIEdit.cpp(213): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ui\UIEdit.cpp(336): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ui\UIEdit.cpp(362): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[199/464] Building CXX object music\CMakeFiles\music.dir\Debug\sequencer.cpp.obj
C:\Users\csarbora\Projects\Descent3\music\sequencer.cpp(326): warning C4311: 'type cast': pointer truncation from 'OutrageMusicSeq::music_stream *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\music\sequencer.cpp(326): warning C4302: 'type cast': truncation from 'OutrageMusicSeq::music_stream *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\music\sequencer.cpp(643): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[201/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIListBox.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIListBox.cpp(366): warning C4311: 'type cast': pointer truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIListBox.cpp(366): warning C4302: 'type cast': truncation from 'UIItem *' to 'unsigned int'
[202/464] Building CXX object win32\CMakeFiles\win32.dir\Debug\WinController.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\win32\WinController.cpp(1714): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[203/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIConsole.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIConsole.cpp(138): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ui\UIConsole.cpp(149): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[206/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIGroup.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIGroup.cpp(65): warning C4311: 'type cast': pointer truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGroup.cpp(65): warning C4302: 'type cast': truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGroup.cpp(66): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGroup.cpp(66): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGroup.cpp(73): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[207/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIRes.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIRes.cpp(51): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\ui\UIRes.cpp(70): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[208/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIHotspot.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(97): warning C4311: 'type cast': pointer truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(97): warning C4302: 'type cast': truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(98): warning C4311: 'type cast': pointer truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(98): warning C4302: 'type cast': truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(115): warning C4311: 'type cast': pointer truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(115): warning C4302: 'type cast': truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(116): warning C4311: 'type cast': pointer truncation from 'UIItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIHotspot.cpp(116): warning C4302: 'type cast': truncation from 'UIItem *' to 'unsigned int'
[209/464] Building CXX object stream_audio\CMakeFiles\stream_audio.dir\Debug\streamaudio.cpp.obj
C:\Users\csarbora\Projects\Descent3\stream_audio\streamaudio.cpp(932): warning C4311: 'type cast': pointer truncation from 'AudioStream *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\stream_audio\streamaudio.cpp(932): warning C4302: 'type cast': truncation from 'AudioStream *' to 'unsigned int'
[210/464] Building CXX object ui\CMakeFiles\ui.dir\Debug\UIGadget.cpp.obj
C:\Users\csarbora\Projects\Descent3\ui\UIGadget.cpp(144): warning C4311: 'type cast': pointer truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGadget.cpp(144): warning C4302: 'type cast': truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGadget.cpp(261): warning C4311: 'type cast': pointer truncation from 'UIGadget *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGadget.cpp(261): warning C4302: 'type cast': truncation from 'UIGadget *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGadget.cpp(307): warning C4311: 'type cast': pointer truncation from 'UIGadget *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\ui\UIGadget.cpp(307): warning C4302: 'type cast': truncation from 'UIGadget *' to 'unsigned int'
[213/464] Building CXX object netcon\mtclient\CMakeFiles\Parallax_Online.dir\Debug\mtpilottracker.cpp.obj
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(245): warning C4244: 'argument': conversion from 'float' to 'unsigned int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(249): warning C4244: '=': conversion from 'T' to 'uint16_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(303): warning C4244: '=': conversion from 'T' to 'uint16_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(380): warning C4244: '=': conversion from 'T' to 'uint16_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(412): warning C4244: '=': conversion from 'T' to 'uint16_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(473): warning C4244: '=': conversion from 'unsigned __int64' to 'uint16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(698): warning C4244: '=': conversion from 'T' to 'uint16_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtpilottracker.cpp(740): warning C4244: '=': conversion from 'T' to 'uint16_t', possible loss of data
with
[
T=unsigned __int64
]
[217/464] Building CXX object netcon\mtclient\CMakeFiles\Parallax_Online.dir\Debug\chat_api.cpp.obj
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(248): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(261): warning C4244: 'argument': conversion from 'SOCKET' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(329): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(335): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(342): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(347): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(352): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(360): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(395): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(539): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(550): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(567): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(582): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(631): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(632): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(765): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(826): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\chat_api.cpp(1090): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[218/464] Building CXX object netcon\mtclient\CMakeFiles\Parallax_Online.dir\Debug\mtgametrack.cpp.obj
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(189): warning C4244: '=': conversion from 'T' to 'uint32_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(192): warning C4244: '=': conversion from 'T' to 'uint32_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(206): warning C4244: '=': conversion from 'T' to 'uint32_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(209): warning C4244: '=': conversion from 'T' to 'uint32_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(213): warning C4244: '=': conversion from 'T' to 'uint32_t', possible loss of data
with
[
T=unsigned __int64
]
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(333): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtgametrack.cpp(335): warning C4244: '=': conversion from 'T' to 'uint32_t', possible loss of data
with
[
T=unsigned __int64
]
[220/464] Building CXX object module\CMakeFiles\module.dir\Debug\module.cpp.obj
C:\Users\csarbora\Projects\Descent3\module\module.cpp(142): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\module\module.cpp(152): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[221/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\generic.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(522): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(527): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(538): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(539): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(550): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(555): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(561): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(702): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(709): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(716): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(798): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(818): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(832): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(1142): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(1145): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(1145): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(1379): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(1379): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(2132): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(2134): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\generic.cpp(2134): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
[222/464] Building CXX object ddio\CMakeFiles\ddio.dir\Debug\winmouse.cpp.obj
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(142): warning C4244: '=': conversion from 'LONG' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(143): warning C4244: '=': conversion from 'LONG' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(333): warning C4244: '=': conversion from 'float' to 'DWORD', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(344): warning C4244: '=': conversion from 'float' to 'DWORD', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(353): warning C4244: '=': conversion from 'float' to 'DWORD', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(363): warning C4244: '=': conversion from 'float' to 'DWORD', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(393): warning C4244: '+=': conversion from 'LONG' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(394): warning C4244: '+=': conversion from 'LONG' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(398): warning C4244: '+=': conversion from 'LONG' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\ddio\winmouse.cpp(399): warning C4244: '+=': conversion from 'LONG' to 'int16_t', possible loss of data
[225/464] Building CXX object renderer\CMakeFiles\renderer.dir\Debug\HardwareOpenGL.cpp.obj
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(231): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(235): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(284): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(284): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(286): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(286): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(289): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(289): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(291): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(291): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(800): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(800): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(801): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(801): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(802): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(802): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(847): warning C4311: 'type cast': pointer truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(847): warning C4302: 'type cast': truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(848): warning C4311: 'type cast': pointer truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(848): warning C4302: 'type cast': truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(849): warning C4311: 'type cast': pointer truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(849): warning C4302: 'type cast': truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(927): warning C4311: 'type cast': pointer truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(927): warning C4302: 'type cast': truncation from 'uint32_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(2147): warning C4101: 'dest_data': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(2148): warning C4101: 'temp_data': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(2176): warning C4018: '<': signed/unsigned mismatch
C:\Users\csarbora\Projects\Descent3\renderer\HardwareOpenGL.cpp(2177): warning C4018: '<': signed/unsigned mismatch
[226/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\eax.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\eax.cpp(164): warning C4311: 'type cast': pointer truncation from 'LPDIRECTSOUND' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\eax.cpp(164): warning C4302: 'type cast': truncation from 'LPDIRECTSOUND' to 'unsigned int'
[227/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\shippage.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(280): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(285): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(295): warning C4267: 'argument': conversion from 'size_t' to 'int8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(344): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(345): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(404): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(417): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(447): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(456): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\shippage.cpp(465): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[228/464] Building CXX object physics\CMakeFiles\physics.dir\Debug\newstyle_fi.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[229/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\hlsoundlib.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\hlsoundlib.cpp(536): warning C4311: 'type cast': pointer truncation from 'llsSystem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\hlsoundlib.cpp(536): warning C4302: 'type cast': truncation from 'llsSystem *' to 'unsigned int'
[230/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\ds3dgeometry.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dgeometry.cpp(168): warning C4101: 'i': unreferenced local variable
[231/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\dsound3d.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\dsound3d.cpp(179): warning C4311: 'type cast': pointer truncation from 'char *volatile ' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\dsound3d.cpp(179): warning C4302: 'type cast': truncation from 'char *volatile ' to 'unsigned int'
[232/464] Building CXX object manage\CMakeFiles\manage.dir\Debug\manage.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\manage.cpp(635): warning C4311: 'type cast': pointer truncation from 'old_file *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\manage.cpp(635): warning C4302: 'type cast': truncation from 'old_file *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\manage.cpp(1002): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\manage\manage.cpp(2803): warning C4311: 'type cast': pointer truncation from 'mngs_track_lock *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\manage\manage.cpp(2803): warning C4302: 'type cast': truncation from 'mngs_track_lock *' to 'unsigned int'
[234/464] Building CXX object model\CMakeFiles\model.dir\Debug\polymodel.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1018): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1434): warning C4311: 'type cast': pointer truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1434): warning C4302: 'type cast': truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1435): warning C4311: 'type cast': pointer truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1435): warning C4302: 'type cast': truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1436): warning C4311: 'type cast': pointer truncation from 'float *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1436): warning C4302: 'type cast': truncation from 'float *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1489): warning C4311: 'type cast': pointer truncation from 'polyface *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1489): warning C4302: 'type cast': truncation from 'polyface *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1507): warning C4311: 'type cast': pointer truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1507): warning C4302: 'type cast': truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1537): warning C4311: 'type cast': pointer truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1537): warning C4302: 'type cast': truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1540): warning C4311: 'type cast': pointer truncation from 'float *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1540): warning C4302: 'type cast': truncation from 'float *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1543): warning C4311: 'type cast': pointer truncation from 'float *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1543): warning C4302: 'type cast': truncation from 'float *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1825): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1825): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1896): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\model\polymodel.cpp(1896): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
[235/464] Building CXX object physics\CMakeFiles\physics.dir\Debug\FindIntersection.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[236/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\soundload.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\sndlib\soundload.cpp(431): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[239/464] Building CXX object networking\CMakeFiles\networking.dir\Debug\networking.cpp.obj
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(438): warning C4309: 'initializing': truncation of constant value
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(608): warning C4311: 'type cast': pointer truncation from 'CFILE *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(608): warning C4302: 'type cast': truncation from 'CFILE *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(627): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(840): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(840): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(1080): warning C4309: 'return': truncation of constant value
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(1130): warning C4311: 'type cast': pointer truncation from 'reliable_net_sendbuffer *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(1130): warning C4302: 'type cast': truncation from 'reliable_net_sendbuffer *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(1168): warning C4311: 'type cast': pointer truncation from 'reliable_net_sendbuffer *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(1168): warning C4302: 'type cast': truncation from 'reliable_net_sendbuffer *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(1571): warning C4309: '=': truncation of constant value
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(2336): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(2336): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(2338): warning C4311: 'type cast': pointer truncation from 'network_address *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\networking\networking.cpp(2338): warning C4302: 'type cast': truncation from 'network_address *' to 'unsigned int'
[240/464] Building CXX object physics\CMakeFiles\physics.dir\Debug\physics.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[241/464] Building CXX object networking\CMakeFiles\networking.dir\Debug\directplay.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[242/464] Building CXX object netcon\mtclient\CMakeFiles\Parallax_Online.dir\Debug\mtclient.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\includes\con_dll.h(1202): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\includes\con_dll.h(1255): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\includes\con_dll.h(1279): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(526): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(918): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(919): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(1307): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(1397): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(1401): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(1405): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(1413): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\mtclient\mtclient.cpp(3203): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[243/464] Building CXX object netcon\lanclient\CMakeFiles\Direct_TCP_IP.dir\Debug\lanclient.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\includes\con_dll.h(1202): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\includes\con_dll.h(1255): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\includes\con_dll.h(1279): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\netcon\lanclient\lanclient.cpp(626): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[244/464] Building CXX object sndlib\CMakeFiles\sndlib.dir\Debug\ds3dlib.cpp.obj
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(442): warning C4311: 'type cast': pointer truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(442): warning C4302: 'type cast': truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(1409): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(1409): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(1523): warning C4311: 'type cast': pointer truncation from 'LPDIRECTSOUNDBUFFER' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(1523): warning C4302: 'type cast': truncation from 'LPDIRECTSOUNDBUFFER' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(2202): warning C4311: 'type cast': pointer truncation from 'volatile DSLOOPSTREAM *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(2202): warning C4302: 'type cast': truncation from 'volatile DSLOOPSTREAM *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(3101): warning C4311: 'type cast': pointer truncation from 'LPDIRECTSOUNDBUFFER' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\sndlib\ds3dlib.cpp(3101): warning C4302: 'type cast': truncation from 'LPDIRECTSOUNDBUFFER' to 'unsigned int'
[245/464] Building CXX object physics\CMakeFiles\physics.dir\Debug\Collide.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[332/464] Generate 'Direct TCP~IP.d3c'
Warning! File Direct TCP~IP.so from "C:/Users/csarbora/Projects/Descent3/netcon/lanclient/TCP_IP.d3c.txt" not found! Skipping...
Warning! File Direct TCP~IP.dylib from "C:/Users/csarbora/Projects/Descent3/netcon/lanclient/TCP_IP.d3c.txt" not found! Skipping...
Creating "C:\\Users\\csarbora\\Projects\\Descent3\\builds\\win32\\Descent3\\Debug\\online\\Direct TCP~IP.d3c"...
Adding Direct TCP~IP.dll... [ok]
Adding lanclient.str... [ok]
Done!
[333/464] Generate 'Parallax Online.d3c'
Warning! File Parallax Online.so from "C:/Users/csarbora/Projects/Descent3/netcon/mtclient/Parallax_Online.d3c.txt" not found! Skipping...
Warning! File Parallax Online.dylib from "C:/Users/csarbora/Projects/Descent3/netcon/mtclient/Parallax_Online.d3c.txt" not found! Skipping...
Creating "C:\\Users\\csarbora\\Projects\\Descent3\\builds\\win32\\Descent3\\Debug\\online\\Parallax Online.d3c"...
Adding mtclient.str... [ok]
Adding Parallax Online.dll... [ok]
Adding pxogame.ogf... [ok]
Adding pxomain.ogf... [ok]
Done!
[334/464] Generate fullhog/d3-win.hog
Creating "C:\\Users\\csarbora\\Projects\\Descent3\\builds\\win32\\Descent3\\Debug\\d3-win.hog"...
Adding AIGame.dll... [ok]
Adding aigame.str... [ok]
Adding aigame2.dll... [ok]
Adding AIGame3.dll... [ok]
Adding aigame4.dll... [ok]
Adding AIGAMEi.STR... [ok]
Adding Anarchy.str... [ok]
Adding Anarchyi.str... [ok]
Adding barney.dll... [ok]
Adding BatteriesIncluded.dll... [ok]
Adding BossCamera.dll... [ok]
Adding CanyonsCTF.dll... [ok]
Adding CellTestLevel.dll... [ok]
Adding ChrisTest.dll... [ok]
Adding clutter.dll... [ok]
Adding coop.str... [ok]
Adding coopi.str... [ok]
Adding CTF.str... [ok]
Adding CTFi.str... [ok]
Adding D3.STR... [ok]
Adding d3i.str... [ok]
Adding DMFC.str... [ok]
Adding DMFCi.str... [ok]
Adding dp_modem.str... [ok]
Adding dp_modemi.str... [ok]
Adding dp_serial.str... [ok]
Adding dp_seriali.str... [ok]
Adding entropy.str... [ok]
Adding entropyi.str... [ok]
Adding gamecredits.txt... [ok]
Adding generic.dll... [ok]
Adding GENERIC.STR... [ok]
Adding generici.str... [ok]
Adding Geodomes.dll... [ok]
Adding HalfPipe.dll... [ok]
Adding hoard.str... [ok]
Adding hoardi.str... [ok]
Adding Hyper.str... [ok]
Adding hyperi.str... [ok]
Adding InfernalBolt.dll... [ok]
Adding Inversion.dll... [ok]
Adding ipxclient.str... [ok]
Adding ipxclienti.str... [ok]
Adding lanclient.str... [ok]
Adding lanclienti.str... [ok]
Adding LEVEL0.dll... [ok]
Adding level1.dll... [ok]
Adding level10.dll... [ok]
Adding Level10i.str... [ok]
Adding level11.dll... [ok]
Adding Level11i.str... [ok]
Adding Level12.dll... [ok]
Adding Level12i.str... [ok]
Adding level13.dll... [ok]
Adding Level13i.str... [ok]
Adding level14.dll... [ok]
Adding Level14i.str... [ok]
Adding LEVEL15.dll... [ok]
Adding Level15i.str... [ok]
Adding Level16.dll... [ok]
Adding level17.dll... [ok]
Adding Level1i.str... [ok]
Adding level2.dll... [ok]
Adding Level2i.str... [ok]
Adding level3.dll... [ok]
Adding Level3i.str... [ok]
Adding level4.dll... [ok]
Adding LEVEL4i.STR... [ok]
Adding level5.dll... [ok]
Adding Level5i.str... [ok]
Adding Level6.dll... [ok]
Adding Level6i.str... [ok]
Adding level7.dll... [ok]
Adding Level7i.str... [ok]
Adding level8.dll... [ok]
Adding Level8i.str... [ok]
Adding Level9.dll... [ok]
Adding Level9i.str... [ok]
Adding LevelS1.dll... [ok]
Adding LEVELS1i.STR... [ok]
Adding levelS2.dll... [ok]
Adding LEVELS2.str... [ok]
Adding LEVELS2i.STR... [ok]
Adding loki.ogf... [ok]
Adding Merc02.dll... [ok]
Adding Merc1.dll... [ok]
Adding Merc3.dll... [ok]
Adding Merc4.dll... [ok]
Adding merc5.dll... [ok]
Adding Merc6.dll... [ok]
Adding Merc7.dll... [ok]
Adding monster.str... [ok]
Adding monsteri.str... [ok]
Adding mtclient.str... [ok]
Adding mtclienti.str... [ok]
Adding myPowerHouse.dll... [ok]
Adding Mysterious_Isle.dll... [ok]
Adding orbital.dll... [ok]
Adding Paranoia.dll... [ok]
Adding PiccuStation.dll... [ok]
Adding Polaris.dll... [ok]
Adding pxogame.ogf... [ok]
Adding pxomain.ogf... [ok]
Adding Quadsomniac.dll... [ok]
Adding RudeAwakening.dll... [ok]
Adding SewerRat.dll... [ok]
Adding tanarchy.str... [ok]
Adding tanarchyi.str... [ok]
Adding testscript.dll... [ok]
Adding TrainingMission.dll... [ok]
Adding TrainingMissioni.STR... [ok]
Adding Y2K.dll... [ok]
Done!
[335/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\args.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\args.cpp(41): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[340/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\bsp.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(193): warning C4311: 'type cast': pointer truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(193): warning C4302: 'type cast': truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(194): warning C4311: 'type cast': pointer truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(194): warning C4302: 'type cast': truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(220): warning C4311: 'type cast': pointer truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(220): warning C4302: 'type cast': truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(802): warning C4311: 'type cast': pointer truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(802): warning C4302: 'type cast': truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(950): warning C4311: 'type cast': pointer truncation from 'bspnode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bsp.cpp(950): warning C4302: 'type cast': truncation from 'bspnode *' to 'unsigned int'
[341/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\bnode.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\bnode.cpp(226): warning C4311: 'type cast': pointer truncation from 'bn_list *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bnode.cpp(226): warning C4302: 'type cast': truncation from 'bn_list *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bnode.cpp(554): warning C4311: 'type cast': pointer truncation from 'bn_list *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\bnode.cpp(554): warning C4302: 'type cast': truncation from 'bn_list *' to 'unsigned int'
[344/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\aiambient.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\aiambient.cpp(147): warning C4267: '=': conversion from 'size_t' to 'int16_t', possible loss of data
[345/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\special_face.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\special_face.cpp(60): warning C4311: 'type cast': pointer truncation from 'specular_instance *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\special_face.cpp(60): warning C4302: 'type cast': truncation from 'specular_instance *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\special_face.cpp(69): warning C4311: 'type cast': pointer truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\special_face.cpp(69): warning C4302: 'type cast': truncation from 'vector *' to 'unsigned int'
[354/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\lightmap_info.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(62): warning C4311: 'type cast': pointer truncation from 'lightmap_info *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(62): warning C4302: 'type cast': truncation from 'lightmap_info *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(64): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(64): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(210): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(210): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(342): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lightmap_info.cpp(342): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
[355/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\BriefingParse.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\BriefingParse.cpp(1205): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[356/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\credits.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(144): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(181): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(181): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(227): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(227): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(268): warning C4311: 'type cast': pointer truncation from 'creditline *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(268): warning C4302: 'type cast': truncation from 'creditline *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(294): warning C4311: 'type cast': pointer truncation from 'creditline *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\credits.cpp(294): warning C4302: 'type cast': truncation from 'creditline *' to 'unsigned int'
[358/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\ambient.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\ambient.cpp(227): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\ambient.cpp(308): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[360/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\lighting.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(146): warning C4311: 'type cast': pointer truncation from 'dynamic_lightmap *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(146): warning C4302: 'type cast': truncation from 'dynamic_lightmap *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(210): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(210): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(229): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(229): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(1600): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\lighting.cpp(1600): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
[361/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\terrain.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\terrain.cpp(954): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\terrain.cpp(954): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\terrain.cpp(957): warning C4311: 'type cast': pointer truncation from 'g3Point *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\terrain.cpp(957): warning C4302: 'type cast': truncation from 'g3Point *' to 'unsigned int'
[362/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\TelcomEffectsRender.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(79): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(79): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(155): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(155): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(184): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(296): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelcomEffectsRender.cpp(296): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
[365/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\ConfigItem.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(695): warning C4311: 'type cast': pointer truncation from 'UITextItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(695): warning C4302: 'type cast': truncation from 'UITextItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(702): warning C4311: 'type cast': pointer truncation from 'UIRadioButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(702): warning C4302: 'type cast': truncation from 'UIRadioButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(741): warning C4311: 'type cast': pointer truncation from 'NewUISlider *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(741): warning C4302: 'type cast': truncation from 'NewUISlider *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(791): warning C4311: 'type cast': pointer truncation from 'NewUIButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(791): warning C4302: 'type cast': truncation from 'NewUIButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(823): warning C4311: 'type cast': pointer truncation from 'NewUIListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(823): warning C4302: 'type cast': truncation from 'NewUIListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(830): warning C4311: 'type cast': pointer truncation from 'UITextItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(830): warning C4302: 'type cast': truncation from 'UITextItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(868): warning C4311: 'type cast': pointer truncation from 'NewUIButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(868): warning C4302: 'type cast': truncation from 'NewUIButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(910): warning C4311: 'type cast': pointer truncation from 'UIHotspot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(910): warning C4302: 'type cast': truncation from 'UIHotspot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(968): warning C4311: 'type cast': pointer truncation from 'UITextItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(968): warning C4302: 'type cast': truncation from 'UITextItem *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(976): warning C4311: 'type cast': pointer truncation from 'UIRadioButton *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ConfigItem.cpp(976): warning C4302: 'type cast': truncation from 'UIRadioButton *' to 'unsigned int'
[366/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\room.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\room.cpp(626): warning C4311: 'type cast': pointer truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\room.cpp(626): warning C4302: 'type cast': truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\room.cpp(627): warning C4311: 'type cast': pointer truncation from 'roomUVL *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\room.cpp(627): warning C4302: 'type cast': truncation from 'roomUVL *' to 'unsigned int'
[367/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\Briefing.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\Briefing.cpp(307): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Briefing.cpp(351): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Briefing.cpp(392): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[368/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\gametexture.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(422): warning C4311: 'type cast': pointer truncation from 'proc_struct *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(422): warning C4302: 'type cast': truncation from 'proc_struct *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(458): warning C4311: 'type cast': pointer truncation from 'static_proc_element *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(458): warning C4302: 'type cast': truncation from 'static_proc_element *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(550): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(763): warning C4311: 'type cast': pointer truncation from 'int8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gametexture.cpp(763): warning C4302: 'type cast': truncation from 'int8_t *' to 'unsigned int'
[374/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\TelComEffects.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(251): warning C4311: 'type cast': pointer truncation from 'tceffect *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(251): warning C4302: 'type cast': truncation from 'tceffect *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(400): warning C4311: 'type cast': pointer truncation from 'tceffect *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(400): warning C4302: 'type cast': truncation from 'tceffect *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(631): warning C4311: 'type cast': pointer truncation from 'tceffect *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(631): warning C4302: 'type cast': truncation from 'tceffect *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(695): warning C4311: 'type cast': pointer truncation from 'TCTEXTDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(695): warning C4302: 'type cast': truncation from 'TCTEXTDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(696): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(696): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(764): warning C4311: 'type cast': pointer truncation from 'TCBMPDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(764): warning C4302: 'type cast': truncation from 'TCBMPDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(826): warning C4311: 'type cast': pointer truncation from 'TCMOVIEDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(826): warning C4302: 'type cast': truncation from 'TCMOVIEDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(868): warning C4311: 'type cast': pointer truncation from 'TCBKGDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(868): warning C4302: 'type cast': truncation from 'TCBKGDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(907): warning C4311: 'type cast': pointer truncation from 'TCPOLYDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(907): warning C4302: 'type cast': truncation from 'TCPOLYDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(921): warning C4311: 'type cast': pointer truncation from 'TCSNDDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(921): warning C4302: 'type cast': truncation from 'TCSNDDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(950): warning C4311: 'type cast': pointer truncation from 'TCBUTTONDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(950): warning C4302: 'type cast': truncation from 'TCBUTTONDESC *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1029): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1029): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1033): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1039): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1053): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1053): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1056): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1060): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1084): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1084): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1087): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1091): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1106): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1106): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1119): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1119): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1143): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1143): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1163): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1163): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1183): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1183): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1249): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1249): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1255): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1283): warning C4311: 'type cast': pointer truncation from 'chunked_bitmap *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComEffects.cpp(1283): warning C4302: 'type cast': truncation from 'chunked_bitmap *' to 'unsigned int'
[375/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\aipath.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\aipath.cpp(577): warning C4311: 'type cast': pointer truncation from 'ai_path_info *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\aipath.cpp(577): warning C4302: 'type cast': truncation from 'ai_path_info *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\aipath.cpp(687): warning C4311: 'type cast': pointer truncation from 'bn_list *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\aipath.cpp(687): warning C4302: 'type cast': truncation from 'bn_list *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\aipath.cpp(852): warning C4311: 'type cast': pointer truncation from 'bn_list *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\aipath.cpp(852): warning C4302: 'type cast': truncation from 'bn_list *' to 'unsigned int'
[376/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\localization.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(265): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(265): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(471): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(471): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(560): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(669): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(679): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(768): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\localization.cpp(771): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[378/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\subtitles.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(92): warning C4311: 'type cast': pointer truncation from 'CFILE *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(92): warning C4302: 'type cast': truncation from 'CFILE *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(93): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(93): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(107): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(107): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(114): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(114): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(115): warning C4311: 'type cast': pointer truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(115): warning C4302: 'type cast': truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(146): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(146): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(147): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(147): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(149): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\subtitles.cpp(193): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[379/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\ObjInit.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\ObjInit.cpp(629): warning C4311: 'type cast': pointer truncation from 'effect_info_s *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\ObjInit.cpp(629): warning C4302: 'type cast': truncation from 'effect_info_s *' to 'unsigned int'
[381/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\newui_filedlg.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(475): warning C4311: 'type cast': pointer truncation from 'char **' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(475): warning C4302: 'type cast': truncation from 'char **' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(476): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(476): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(477): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(477): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(529): warning C4311: 'type cast': pointer truncation from 'char **' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(529): warning C4302: 'type cast': truncation from 'char **' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(530): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(530): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(656): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\newui_filedlg.cpp(664): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[382/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\newui.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\newui.cpp(796): warning C4311: 'type cast': pointer truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui.cpp(796): warning C4302: 'type cast': truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui.cpp(801): warning C4311: 'type cast': pointer truncation from 'UIWindow *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui.cpp(801): warning C4302: 'type cast': truncation from 'UIWindow *' to 'unsigned int'
[383/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\hotspotmap.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(182): warning C4311: 'type cast': pointer truncation from 'hotspot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(182): warning C4302: 'type cast': truncation from 'hotspot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(227): warning C4311: 'type cast': pointer truncation from 'scanline *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(227): warning C4302: 'type cast': truncation from 'scanline *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(275): warning C4311: 'type cast': pointer truncation from 'window_box *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(275): warning C4302: 'type cast': truncation from 'window_box *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(546): warning C4311: 'type cast': pointer truncation from 'char *[]' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(546): warning C4302: 'type cast': truncation from 'char *[]' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(833): warning C4311: 'type cast': pointer truncation from 'hotspotmap_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(833): warning C4302: 'type cast': truncation from 'hotspotmap_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(880): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(978): warning C4311: 'type cast': pointer truncation from 'CFILE *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\hotspotmap.cpp(978): warning C4302: 'type cast': truncation from 'CFILE *' to 'unsigned int'
[384/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\vclip.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\vclip.cpp(208): warning C4311: 'type cast': pointer truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\vclip.cpp(208): warning C4302: 'type cast': truncation from 'int16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\vclip.cpp(414): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[385/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\attach.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(329): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(329): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(362): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(362): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(410): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(410): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(445): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(445): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(453): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(453): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(474): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(474): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(475): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(475): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(525): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(525): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(526): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(526): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(646): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\attach.cpp(646): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[387/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\cockpit.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\cockpit.cpp(434): warning C4311: 'type cast': pointer truncation from 'vector *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\cockpit.cpp(434): warning C4302: 'type cast': truncation from 'vector *' to 'unsigned int'
[388/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\AIGoal.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[389/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi_save_setting.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[390/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\procedurals.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1142): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1142): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1146): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1146): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1242): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1242): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1246): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\procedurals.cpp(1246): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
[391/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\mmItem.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\mmItem.cpp(422): warning C4101: 'i': unreferenced local variable
[392/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\spew.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\spew.cpp(173): warning C4311: 'type cast': pointer truncation from 'spewinfo *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\spew.cpp(173): warning C4302: 'type cast': truncation from 'spewinfo *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\spew.cpp(227): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\spew.cpp(227): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[393/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multisafe_server.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multisafe_server.cpp(1142): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multisafe_server.cpp(1142): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[394/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\gameevent.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gameevent.cpp(226): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gameevent.cpp(226): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
[395/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\NewPyroGauges.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[396/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\object_lighting.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\object_lighting.cpp(542): warning C4311: 'type cast': pointer truncation from 'lightmap_object_face *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\object_lighting.cpp(542): warning C4302: 'type cast': truncation from 'lightmap_object_face *' to 'unsigned int'
[398/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\fireball.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\fireball.cpp(1763): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\fireball.cpp(1763): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[399/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\AImain.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(2904): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(2904): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(3669): warning C4311: 'type cast': pointer truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(3669): warning C4302: 'type cast': truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(3845): warning C4311: 'type cast': pointer truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(3845): warning C4302: 'type cast': truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(5812): warning C4311: 'type cast': pointer truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\AImain.cpp(5812): warning C4302: 'type cast': truncation from 'ai_frame *' to 'unsigned int'
[400/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\doorway.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\doorway.cpp(364): warning C4311: 'type cast': pointer truncation from 'doorway *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\doorway.cpp(364): warning C4302: 'type cast': truncation from 'doorway *' to 'unsigned int'
[401/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\newui_core.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1083): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1083): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1497): warning C4311: 'type cast': pointer truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1497): warning C4302: 'type cast': truncation from 'void *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1524): warning C4311: 'type cast': pointer truncation from 'newuiListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1524): warning C4302: 'type cast': truncation from 'newuiListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1536): warning C4311: 'type cast': pointer truncation from 'newuiComboBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(1536): warning C4302: 'type cast': truncation from 'newuiComboBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(2834): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(2834): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(3574): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\newui_core.cpp(3574): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
[402/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\audiotaunts.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\audiotaunts.cpp(218): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\audiotaunts.cpp(218): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\audiotaunts.cpp(219): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\audiotaunts.cpp(219): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\audiotaunts.cpp(758): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\audiotaunts.cpp(758): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
[404/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\mission_download.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\mission_download.cpp(539): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\mission_download.cpp(555): warning C4267: 'initializing': conversion from 'size_t' to 'uint16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\mission_download.cpp(638): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[405/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\levelgoal.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(293): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(325): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(338): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(447): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(458): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(468): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(476): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(486): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(494): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(504): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(512): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(522): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(580): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(761): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(767): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(773): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\levelgoal.cpp(779): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[406/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\ship.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[407/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\objinfo.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[408/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\buddymenu.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(203): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(210): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(219): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(245): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(318): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(318): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(333): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(333): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(378): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(378): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(460): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\buddymenu.cpp(460): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[409/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\marker.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[410/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\gauges.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gauges.cpp(779): warning C4311: 'type cast': pointer truncation from 'bsp_info *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gauges.cpp(779): warning C4302: 'type cast': truncation from 'bsp_info *' to 'unsigned int'
[411/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\matcen.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\matcen.cpp(330): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\matcen.cpp(330): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\matcen.cpp(745): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\matcen.cpp(785): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\matcen.cpp(813): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[412/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\dedicated_server.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(905): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(914): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(929): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(984): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(1023): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(1048): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\dedicated_server.cpp(1053): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[413/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\renderobject.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\renderobject.cpp(1072): warning C4305: 'argument': truncation from 'double' to 'const _Ty'
with
[
_Ty=float
]
C:\Users\csarbora\Projects\Descent3\Descent3\renderobject.cpp(1073): warning C4305: 'argument': truncation from 'double' to 'const _Ty'
with
[
_Ty=float
]
C:\Users\csarbora\Projects\Descent3\Descent3\renderobject.cpp(1074): warning C4305: 'argument': truncation from 'double' to 'const _Ty'
with
[
_Ty=float
]
C:\Users\csarbora\Projects\Descent3\Descent3\renderobject.cpp(1140): warning C4305: 'argument': truncation from 'double' to 'const _Ty'
with
[
_Ty=float
]
C:\Users\csarbora\Projects\Descent3\Descent3\renderobject.cpp(1141): warning C4305: 'argument': truncation from 'double' to 'const _Ty'
with
[
_Ty=float
]
C:\Users\csarbora\Projects\Descent3\Descent3\renderobject.cpp(1142): warning C4305: 'argument': truncation from 'double' to 'const _Ty'
with
[
_Ty=float
]
[414/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\Inventory.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(585): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(649): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(674): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(733): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(733): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(883): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(883): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1010): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1010): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1079): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1079): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1451): warning C4311: 'type cast': pointer truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1451): warning C4302: 'type cast': truncation from 'int *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1519): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Inventory.cpp(1519): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[415/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\huddisplay.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[416/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\render.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\render.cpp(3689): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\render.cpp(3689): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
[417/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\Controls.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[418/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\gamecinematics.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamecinematics.cpp(813): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamecinematics.cpp(1318): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamecinematics.cpp(1388): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamecinematics.cpp(1400): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[419/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\GameCheat.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\GameCheat.cpp(287): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\GameCheat.cpp(308): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[420/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\gamesave.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(458): warning C4311: 'type cast': pointer truncation from 'newuiHotspot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(458): warning C4302: 'type cast': truncation from 'newuiHotspot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1019): warning C4267: 'argument': conversion from 'size_t' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1020): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1093): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1156): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1161): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1315): warning C4311: 'type cast': pointer truncation from 'matcen *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\gamesave.cpp(1315): warning C4302: 'type cast': truncation from 'matcen *' to 'unsigned int'
[421/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\ObjScript.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[422/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi_client.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_client.cpp(176): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_client.cpp(182): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_client.cpp(190): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_client.cpp(214): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[424/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\robotfire.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[425/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\DllWrappers.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[426/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\SmallViews.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[427/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\weapon.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\weapon.cpp(586): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\weapon.cpp(633): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[428/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\hudmessage.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\hudmessage.cpp(773): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\hudmessage.cpp(780): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\hudmessage.cpp(910): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\hudmessage.cpp(936): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\hudmessage.cpp(1677): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
[429/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\demofile.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\demofile.cpp(456): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\demofile.cpp(456): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\demofile.cpp(1717): warning C4267: 'argument': conversion from 'size_t' to 'int16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\demofile.cpp(1718): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[430/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\game.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[431/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\hud.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[432/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\ctlconfig.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[433/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\descent.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[434/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\viseffect.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[435/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multisafe.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[436/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\damage.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[437/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\osiris_predefs.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\osiris_predefs.cpp(827): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\osiris_predefs.cpp(827): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\osiris_predefs.cpp(834): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\osiris_predefs.cpp(834): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
[438/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\pilot_class.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(623): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(649): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(677): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(692): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(707): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(727): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(742): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(988): warning C4311: 'type cast': pointer truncation from 'tMissionData *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot_class.cpp(988): warning C4302: 'type cast': truncation from 'tMissionData *' to 'unsigned int'
[439/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\screens.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\screens.cpp(592): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[440/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\object.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\object.cpp(3106): warning C4311: 'type cast': pointer truncation from 'effect_info_s *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\object.cpp(3106): warning C4302: 'type cast': truncation from 'effect_info_s *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\object.cpp(3354): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\object.cpp(3354): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\object.cpp(3460): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\object.cpp(3460): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[441/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\TelComCargo.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[442/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\PilotPicsAPI.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[443/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\Game2DLL.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Game2DLL.cpp(740): warning C4311: 'type cast': pointer truncation from 'network_address *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Game2DLL.cpp(740): warning C4302: 'type cast': truncation from 'network_address *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Game2DLL.cpp(792): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Game2DLL.cpp(792): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Game2DLL.cpp(800): warning C4267: 'initializing': conversion from 'size_t' to 'uint32_t', possible loss of data
[444/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\LoadLevel.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(1696): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(2456): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(2579): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(2579): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(2771): warning C4311: 'type cast': pointer truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(2771): warning C4302: 'type cast': truncation from 'uint16_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(4091): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(4091): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(4094): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\LoadLevel.cpp(4094): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
[445/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi_connect.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_connect.cpp(554): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_connect.cpp(561): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_connect.cpp(567): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_connect.cpp(831): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
[446/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi_ui.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(420): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(522): warning C4267: '=': conversion from 'size_t' to 'uint32_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(576): warning C4267: 'initializing': conversion from 'size_t' to 'uint32_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(598): warning C4267: 'initializing': conversion from 'size_t' to 'uint32_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(622): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(803): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(1743): warning C4311: 'type cast': pointer truncation from 'network_game *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi_ui.cpp(1743): warning C4302: 'type cast': truncation from 'network_game *' to 'unsigned int'
[447/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\TelCom.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelCom.cpp(835): warning C4311: 'type cast': pointer truncation from 'chunked_bitmap *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelCom.cpp(835): warning C4302: 'type cast': truncation from 'chunked_bitmap *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelCom.cpp(1883): warning C4005: 'HIGH_LEVEL': macro redefinition
C:\Program Files (x86)\Windows Kits\10\include\10.0.22621.0\shared\kernelspecs.h(58): note: see previous definition of 'HIGH_LEVEL'
[448/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\OsirisLoadandBind.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(923): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(923): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1499): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1499): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1500): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1500): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1583): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1583): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1703): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1703): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1822): warning C4311: 'type cast': pointer truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1822): warning C4302: 'type cast': truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1862): warning C4311: 'type cast': pointer truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1862): warning C4302: 'type cast': truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1899): warning C4311: 'type cast': pointer truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1899): warning C4302: 'type cast': truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1936): warning C4311: 'type cast': pointer truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(1936): warning C4302: 'type cast': truncation from 'tRefObj *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(2638): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3258): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3258): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3259): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3259): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3452): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3798): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\OsirisLoadandBind.cpp(3802): warning C4267: '=': conversion from 'size_t' to 'uint32_t', possible loss of data
[449/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\gamesequence.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[450/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\WeaponFire.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\WeaponFire.cpp(3405): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\WeaponFire.cpp(3405): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\WeaponFire.cpp(3419): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\WeaponFire.cpp(3419): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[451/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\Mission.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1296): warning C4101: 'str': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1423): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1428): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1436): warning C4311: 'type cast': pointer truncation from 'tLevelNode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1436): warning C4302: 'type cast': truncation from 'tLevelNode *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1650): warning C4101: 'temppath': unreferenced local variable
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1925): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1925): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1926): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Mission.cpp(1926): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
[452/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\loadstate.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[453/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\pilot.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1596): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1596): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1612): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1612): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1626): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1626): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1637): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1637): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1651): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1651): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1665): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1665): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1682): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1682): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1700): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1700): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(1980): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2016): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2016): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2017): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2017): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2144): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2144): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2145): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2145): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2147): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2150): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2192): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2192): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2193): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2193): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2222): warning C4311: 'type cast': pointer truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2222): warning C4302: 'type cast': truncation from 'const char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2223): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2223): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2224): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2224): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2272): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2275): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2302): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2305): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2327): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2327): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2405): warning C4311: 'type cast': pointer truncation from 'newuiListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2405): warning C4302: 'type cast': truncation from 'newuiListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2481): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2520): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2529): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2579): warning C4311: 'type cast': pointer truncation from 'newuiComboBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2579): warning C4302: 'type cast': truncation from 'newuiComboBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2580): warning C4311: 'type cast': pointer truncation from 'newuiComboBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2580): warning C4302: 'type cast': truncation from 'newuiComboBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(2617): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3429): warning C4311: 'type cast': pointer truncation from 'newuiListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3429): warning C4302: 'type cast': truncation from 'newuiListBox *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3430): warning C4311: 'type cast': pointer truncation from 'tCustomListInfo *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3430): warning C4302: 'type cast': truncation from 'tCustomListInfo *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3478): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3478): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3479): warning C4311: 'type cast': pointer truncation from 'tCustomListInfo *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3479): warning C4302: 'type cast': truncation from 'tCustomListInfo *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3480): warning C4311: 'type cast': pointer truncation from 'tAudioTauntComboBoxes *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3480): warning C4302: 'type cast': truncation from 'tAudioTauntComboBoxes *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3746): warning C4311: 'type cast': pointer truncation from 'pilot *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\pilot.cpp(3746): warning C4302: 'type cast': truncation from 'pilot *' to 'unsigned int'
[454/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\Player.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3034): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3034): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3640): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3640): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3698): warning C4311: 'type cast': pointer truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3698): warning C4302: 'type cast': truncation from 'char *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3899): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3899): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3982): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(3982): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(4006): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\Player.cpp(4006): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
[455/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\TelComAutoMap.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\TelComAutoMap.cpp(211): warning C4311: 'type cast': pointer truncation from 'uint8_t *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\TelComAutoMap.cpp(211): warning C4302: 'type cast': truncation from 'uint8_t *' to 'unsigned int'
[456/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\config.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[457/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\terrainrender.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[458/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi_dll_mgr.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_dll_mgr.cpp(674): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_dll_mgr.cpp(677): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[459/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\menu.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[460/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\GameLoop.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[461/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(2400): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(2400): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(2755): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(2761): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(2791): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3865): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3870): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3876): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3882): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3949): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3954): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3960): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(3966): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(4966): warning C4267: 'initializing': conversion from 'size_t' to 'uint8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(5049): warning C4267: 'initializing': conversion from 'size_t' to 'uint8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(5426): warning C4267: 'initializing': conversion from 'size_t' to 'uint8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(6565): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(7186): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(7186): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(7340): warning C4311: 'type cast': pointer truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(7340): warning C4302: 'type cast': truncation from 'object *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(7979): warning C4267: 'initializing': conversion from 'size_t' to 'uint16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(8019): warning C4267: 'initializing': conversion from 'size_t' to 'uint16_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(8442): warning C4311: 'type cast': pointer truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(8442): warning C4302: 'type cast': truncation from 'ai_frame *' to 'unsigned int'
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(8852): warning C4267: 'initializing': conversion from 'size_t' to 'uint8_t', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(9398): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi.cpp(9433): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
[462/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\multi_server.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_server.cpp(761): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_server.cpp(1130): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_server.cpp(1136): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_server.cpp(1194): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\multi_server.cpp(1342): warning C4267: 'initializing': conversion from 'size_t' to 'uint8_t', possible loss of data
[463/464] Building CXX object Descent3\CMakeFiles\Descent3.dir\Debug\init.cpp.obj
C:\Users\csarbora\Projects\Descent3\Descent3\multi_external.h(316): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\init.cpp(1129): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\init.cpp(1132): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\init.cpp(1135): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\init.cpp(1138): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\init.cpp(1141): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
C:\Users\csarbora\Projects\Descent3\Descent3\init.cpp(1201): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data
[464/464] Linking CXX executable Descent3\Debug\Descent3.exe
FAILED: Descent3/Debug/Descent3.exe
C:\Windows\system32\cmd.exe /C "cd . && "C:\Program Files\CMake\bin\cmake.exe" -E vs_link_exe --intdir=Descent3\CMakeFiles\Descent3.dir\Debug --rc=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\rc.exe --mt=C:\PROGRA~2\WI3CF2~1\10\bin\100226~1.0\x64\mt.exe --manifests -- C:\PROGRA~1\MIB055~1\2022\PROFES~1\VC\Tools\MSVC\1440~1.338\bin\Hostx64\x64\link.exe /nologo @CMakeFiles\Descent3.Debug.rsp /out:Descent3\Debug\Descent3.exe /implib:Descent3\Debug\Descent3.lib /pdb:Descent3\Debug\Descent3.pdb /version:0.0 /machine:x64 /SAFESEH:NO /NODEFAULTLIB:LIBC /SAFESEH:NO /NODEFAULTLIB:LIBC /debug /INCREMENTAL /subsystem:windows && C:\Windows\system32\cmd.exe /C "cd /D C:\Users\csarbora\Projects\Descent3\builds\win32\Descent3 && "C:\Program Files\PowerShell\7\pwsh.exe" -noprofile -executionpolicy Bypass -file "C:/Program Files/Microsoft Visual Studio/2022/Professional/VC/vcpkg/scripts/buildsystems/msbuild/applocal.ps1" -targetBinary C:/Users/csarbora/Projects/Descent3/builds/win32/Descent3/Debug/Descent3.exe -installedDir C:/Users/csarbora/Projects/Descent3/builds/win32/vcpkg_installed/x86-windows/debug/bin -OutVariable out""
LINK Pass 1: command "C:\PROGRA~1\MIB055~1\2022\PROFES~1\VC\Tools\MSVC\1440~1.338\bin\Hostx64\x64\link.exe /nologo @CMakeFiles\Descent3.Debug.rsp /out:Descent3\Debug\Descent3.exe /implib:Descent3\Debug\Descent3.lib /pdb:Descent3\Debug\Descent3.pdb /version:0.0 /machine:x64 /SAFESEH:NO /NODEFAULTLIB:LIBC /SAFESEH:NO /NODEFAULTLIB:LIBC /debug /INCREMENTAL /subsystem:windows /MANIFEST /MANIFESTFILE:Descent3\CMakeFiles\Descent3.dir\Debug/intermediate.manifest Descent3\CMakeFiles\Descent3.dir\Debug/manifest.res" failed (exit code 1120) with the following output:
dinput.lib(dilib2.obj) : warning LNK4078: multiple '.text' sections found with different attributes (C0500040)
unzip.lib(unzip.cpp.obj) : error LNK2019: unresolved external symbol __imp_inflate referenced in function "private: int __cdecl ZIP::InflateFile(struct _iobuf *,unsigned int,unsigned char *,unsigned int)" (?InflateFile@ZIP@@AEAAHPEAU_iobuf@@IPEAEI@Z)
unzip.lib(unzip.cpp.obj) : error LNK2019: unresolved external symbol __imp_inflateEnd referenced in function "private: int __cdecl ZIP::InflateFile(struct _iobuf *,unsigned int,unsigned char *,unsigned int)" (?InflateFile@ZIP@@AEAAHPEAU_iobuf@@IPEAEI@Z)
unzip.lib(unzip.cpp.obj) : error LNK2019: unresolved external symbol __imp_inflateInit2_ referenced in function "private: int __cdecl ZIP::InflateFile(struct _iobuf *,unsigned int,unsigned char *,unsigned int)" (?InflateFile@ZIP@@AEAAHPEAU_iobuf@@IPEAEI@Z)
vcpkg_installed\x86-windows\debug\lib\zlibd.lib : warning LNK4272: library machine type 'x86' conflicts with target machine type 'x64'
Descent3\Debug\Descent3.exe : fatal error LNK1120: 3 unresolved externals
ninja: build stopped: subcommand failed.
PS C:\Users\csarbora\Projects\Descent3>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment