mirror of
https://github.com/ZDoom/Raze.git
synced 2025-01-18 22:51:50 +00:00
- hook up GLDEFS parser and do some final fixes
This commit is contained in:
parent
d5aacb369a
commit
f4c9c5df72
2 changed files with 4 additions and 0 deletions
|
@ -148,6 +148,7 @@ void FontCharCreated(FGameTexture* base, FGameTexture* untranslated);
|
|||
void LoadVoxelModels();
|
||||
void MarkMap();
|
||||
void BuildFogTable();
|
||||
void ParseGLDefs();
|
||||
|
||||
DStatusBarCore* StatusBar;
|
||||
|
||||
|
@ -1063,6 +1064,7 @@ int RunGame()
|
|||
gi->app_init();
|
||||
StartScreen->Progress();
|
||||
G_ParseMapInfo();
|
||||
ParseGLDefs();
|
||||
ReplaceMusics(true);
|
||||
CreateStatusBar();
|
||||
SetDefaultMenuColors();
|
||||
|
|
|
@ -1799,9 +1799,11 @@ public:
|
|||
case TAG_MATERIAL:
|
||||
ParseMaterial();
|
||||
break;
|
||||
#endif
|
||||
case TAG_HARDWARESHADER:
|
||||
ParseHardwareShader();
|
||||
break;
|
||||
#if 0
|
||||
case TAG_DETAIL:
|
||||
ParseDetailTexture();
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue