Skip to content

Commit

Permalink
Fixed TOGL includes
Browse files Browse the repository at this point in the history
  • Loading branch information
DotWith committed Aug 21, 2023
1 parent 7bda53a commit 6e36933
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Binary file added mp/src/lib/public/linux32/libtogl.so
Binary file not shown.
13 changes: 8 additions & 5 deletions mp/src/togl/linuxwin/glmgrbasics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2623,12 +2623,15 @@ bool GLMDetectOGLP( void )
// from http://blog.timac.org/?p=190

#ifndef _WIN32
#include <stdbool.h>
#include <stdbool.h>
#endif
#include <sys/types.h>
#ifndef _WIN32
#include <unistd.h>
#include <sys/sysctl.h>
#include <sys/types.h>
#ifdef _LINUX
#include <unistd.h>
#include <linux/sysctl.h>
#elif OSX
#include <unistd.h>
#include <sys/sysctl.h>
#endif

// From Technical Q&A QA1361
Expand Down
2 changes: 1 addition & 1 deletion mp/src/vpc_scripts/groups.vgc
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ $Group "everything"
"vtfdiff"
"vvis_dll"
"vvis_launcher"
// "togl"
"togl"
}

$Group "dedicated"
Expand Down

0 comments on commit 6e36933

Please sign in to comment.