forked from a1batross/Paranoia2_original
master #1
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "nillerusr/Paranoia2:master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
port bsp31migrate to linux
@ -1186,2 +1186,4 @@
if( !COM_GetParmExt( "-file", source, sizeof( source )))
{
printf("%s\n", source);
Please remove unnecessary logging.
@ -0,0 +1,2 @@
#!/bin/sh
Use waf.
why use waf for utilities?
Because we decided to not use everything else than waf as it increases efforts on maintaining.
Well, mdldec in engine repo uses Makefile. Probably for utilities it can be fine but it also have copypasted code, like checking if we are compiling for Windows, the same compiler rules and so on.
@ -213,3 +237,3 @@
}
if( !GetCurrentDirectory( sizeof( root ), root ))
if( !getcwd(root, sizeof( root ) ) )
You already have Q_getwd. Why not to use it?
There is no Q_getcwd
@ -193,6 +193,7 @@ SinCos
*/
void SinCos( float radians, float *sine, float *cosine )
{
#ifdef _MSC_VER
_MSC_VER and x86.
Pull request closed