]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Fix compiling in VS2019 - wrong include syntax for local includes.
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 29 Jun 2020 00:09:50 +0000 (00:09 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 29 Jun 2020 00:09:50 +0000 (00:09 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@12748 d7cf8633-e32d-0410-b094-e92efae38249

com_crc16.c
sv_ccmds.c

index 82801e5ad2e2139d3d7aad5a13fe3ee5d0592a91..6f94aa938b39ce45ef393936428d5339d0fc547c 100644 (file)
@@ -19,7 +19,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */
 // com_crc16.c
 
-#include <quakedef.h>
+#include "quakedef.h"
 
 /*
 ============================================================================
index b549005b0658974c50c35796da8c09e858d782f8..c2e3a667584b06ba4b9ffac581c99f688d23b979 100644 (file)
@@ -18,10 +18,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 */
 
-#include <quakedef.h>
-#include <utf8lib.h>
-#include <server.h>
-#include <sv_demo.h>
+#include "quakedef.h"
+#include "utf8lib.h"
+#include "server.h"
+#include "sv_demo.h"
 
 int current_skill;
 cvar_t sv_cheats = {CVAR_SERVER | CVAR_NOTIFY, "sv_cheats", "0", "enables cheat commands in any game, and cheat impulses in dpmod"};