Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
EDuke32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
93
Issues
93
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Richard Gobeille
EDuke32
Commits
553a7eca
Commit
553a7eca
authored
Jun 12, 2020
by
nukeykt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Engine: Disable classic hightile in no gl builds to workaround compile errors
parent
123df13d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
source/build/src/engine.cpp
source/build/src/engine.cpp
+4
-0
No files found.
source/build/src/engine.cpp
View file @
553a7eca
...
...
@@ -202,6 +202,7 @@ classicht_t classicht[MAXTILES];
classicht_t
*
classic_hightile
(
int
dapicnum
)
{
#ifdef USE_OPENGL
classicht_t
*
cht
=
&
classicht
[
dapicnum
];
hicreplctyp
*
si
=
usehightile
?
hicfindsubst
(
dapicnum
,
0
,
0
)
:
NULL
;
if
(
!
si
||
!
(
si
->
flags
&
HICR_INDEXED
))
...
...
@@ -275,6 +276,9 @@ classicht_t *classic_hightile(int dapicnum)
cht
->
lock
=
CACHE1D_UNLOCKED
;
return
cht
;
#else
return
NULL
;
#endif
}
static
classicht_t
*
globalht
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment