Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Daniel Gurney
EDuke32
Commits
553a7eca
Commit
553a7eca
authored
Jun 12, 2020
by
nukeykt
Browse files
Engine: Disable classic hightile in no gl builds to workaround compile errors
parent
123df13d
Changes
1
Hide whitespace changes
Inline
Side-by-side
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
Supports
Markdown
0%
Try again
or
attach a new 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