1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-20 04:09:16 +00:00

VS2003: changes for older compiler

- nullptr not defined, use nil
- remove unused VCXPROJ with wrong name plMoviePlayer
- std::begin, std::end not defined, conditionally include code for plLocalization::GetLanguageCodes()
      on _MSC_VER >= 1800
- add PLASMA_USE_WEBM to appropriate VS projects
- fix library references to opus, vpx and speex
This commit is contained in:
rarified
2020-08-12 16:28:42 -06:00
parent 14e3118aaa
commit f3c0a81b0b
9 changed files with 32 additions and 324 deletions

View File

@ -870,7 +870,7 @@ hsBool plClient::MsgReceive(plMessage* msg)
//============================================================================
hsBool plClient::IHandleMovieMsg(plMovieMsg* mov)
{
if (mov != nullptr)
if (mov != nil)
hsStatusMessageF("MovieMsg received 0x%x", mov->GetCmd());
if( !(mov->GetFileName() && *mov->GetFileName()) )