From 0add2cd910d9b9f6d96ae9a8e90cb740f4b38e88 Mon Sep 17 00:00:00 2001 From: terencehill Date: Thu, 26 Nov 2015 17:35:24 +0100 Subject: [PATCH] Write empty title and author attributes when exporting a HUD skin --- qcsrc/client/hud/hud_config.qc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qcsrc/client/hud/hud_config.qc b/qcsrc/client/hud/hud_config.qc index be76d46537..9ca2a0ab52 100644 --- a/qcsrc/client/hud/hud_config.qc +++ b/qcsrc/client/hud/hud_config.qc @@ -13,6 +13,9 @@ void HUD_Panel_ExportCfg(string cfgname) fh = fopen(filename, FILE_WRITE); if(fh >= 0) { + HUD_Write("//title \n"); + HUD_Write("//author \n"); + HUD_Write("\n"); HUD_Write_Cvar("hud_skin"); HUD_Write_Cvar("hud_panel_bg"); HUD_Write_Cvar("hud_panel_bg_color"); -- 2.39.2