- compile fixes from last backend sync

This commit is contained in:
Rachael Alexanderson 2024-04-17 15:11:41 -04:00
parent 090973f8d7
commit 5a5d426b85
No known key found for this signature in database
GPG key ID: 26A8ACCE97115EE0
3 changed files with 11 additions and 0 deletions

View file

@ -1010,6 +1010,7 @@ set (PCH_SOURCES
core/rendering/scene/hw_lighting.cpp
core/r_data/gldefs.cpp
core/r_data/r_translate.cpp
core/models/modeldata.cpp
core/console/c_notifybuffer.cpp

View file

@ -96,6 +96,8 @@ CVAR(Bool, autoloadlights, true, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
CVAR(Bool, autoloadbrightmaps, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
CVAR(Bool, autoloadwidescreen, true, CVAR_ARCHIVE | CVAR_GLOBALCONFIG)
CVAR (Bool, longsavemessages, false, CVAR_ARCHIVE|CVAR_GLOBALCONFIG)
// Note: For the automap label there is a separate option "am_textfont".
CVARD(Bool, hud_textfont, false, CVAR_ARCHIVE, "Use the regular text font as replacement for the tiny 3x5 font for HUD messages whenever possible")

View file

@ -0,0 +1,8 @@
#include "common/engine/palettecontainer.h"
#include "name.h"
// this is a stub, for now.
FTranslationID R_FindCustomTranslation(FName name)
{
return INVALID_TRANSLATION;
}