fix windows build scripts, add windows opus support

This commit is contained in:
HappyDOGE
2022-07-28 14:27:56 +03:00
parent 90cd6e0e15
commit 3faf6a69ac
149 changed files with 396 additions and 170 deletions
+4 -2
View File
@@ -53,6 +53,8 @@
#undef GetCurrentDirectory
#endif
#include <time.h>
// memdbgon must be the last include file in a .cpp file!!!
#include <tier0/memdbgon.h>
@@ -1238,7 +1240,7 @@ void FileOpenDialog::PopulateFileList()
kv->SetString( "attributes", g_pFullFileSystem->IsFileWritable( pFullPath )? "" : "R" );
long fileModified = g_pFullFileSystem->GetFileTime( pFullPath );
time_t fileModified = g_pFullFileSystem->GetFileTime( pFullPath );
g_pFullFileSystem->FileTimeToString( pszFileModified, sizeof( pszFileModified ), fileModified );
kv->SetString( "modified", pszFileModified );
@@ -1277,7 +1279,7 @@ void FileOpenDialog::PopulateFileList()
kv->SetString( "attributes", g_pFullFileSystem->IsFileWritable( pFullPath )? "" : "R" );
long fileModified = g_pFullFileSystem->GetFileTime( pFullPath );
time_t fileModified = g_pFullFileSystem->GetFileTime( pFullPath );
g_pFullFileSystem->FileTimeToString( pszFileModified, sizeof( pszFileModified ), fileModified );
kv->SetString( "modified", pszFileModified );