Skip to content

Commit

Permalink
FIX makefile and long descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
nullifiedcat committed Mar 2, 2017
1 parent 78dee3a commit ed3d38f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CC=g++
CFLAGS=-std=gnu++11 -D_POSIX=1 -DRAD_TELEMETRY_DISABLED -DLINUX=1 -D_LINUX=1 -DPOSIX=1 -DGNUC=1 -D_DEVELOPER=1 -DNO_MALLOC_OVERRIDE -O0 -g3 -ggdb -w -c -shared -Wall -Wno-unknown-pragmas -fmessage-length=0 -m32 -fvisibility=hidden -fPIC
CFLAGS=-std=gnu++11 -D_POSIX=1 -DRAD_TELEMETRY_DISABLED -DLINUX=1 -D_LINUX=1 -DPOSIX=1 -DGNUC=1 -D_DEVELOPER=1 -DNO_MALLOC_OVERRIDE -O3 -g3 -ggdb -w -c -shared -Wall -Wno-unknown-pragmas -fmessage-length=0 -m32 -fvisibility=hidden -fPIC
SDKFOLDER=$(realpath source-sdk-2013/mp/src)
CINCLUDES=-I$(SDKFOLDER)/public -I$(SDKFOLDER)/mathlib -I$(SDKFOLDER)/common -I$(SDKFOLDER)/public/tier1 -I$(SDKFOLDER)/public/tier0 -I$(SDKFOLDER)
LDFLAGS=-m32 -fno-gnu-unique -D_GLIBCXX_USE_CXX11_ABI=0 -shared -L$(realpath lib)
Expand Down
2 changes: 1 addition & 1 deletion src/gui/CCVarContainer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ CCVarContainer::CCVarContainer(IWidget* parent, CatVar* var) : CBaseContainer("c
m_pLabel = new CTextLabel(GetName() + "_desc", this, var->desc_short);
m_pControl = 0;
if (var->desc_short.length()) {
Props()->SetString("tooltip", var->desc_short.c_str());
Props()->SetString("tooltip", var->desc_long.c_str());
}
bool needsinput = false;
switch (var->type) {
Expand Down

0 comments on commit ed3d38f

Please sign in to comment.