From: FruitieX Date: Fri, 23 Jul 2010 22:58:32 +0000 (+0300) Subject: fix typo in exporter, no wonder the aspect was saved as "1" :P X-Git-Tag: xonotic-v0.1.0preview~362^2~10 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=52d844e81ee9af83d91ccccd7759ecb061b54922 fix typo in exporter, no wonder the aspect was saved as "1" :P --- diff --git a/hud_luminos_default.cfg b/hud_luminos_default.cfg index 5e60c3c1d5..8d1436a18a 100644 --- a/hud_luminos_default.cfg +++ b/hud_luminos_default.cfg @@ -20,15 +20,15 @@ seta hud_progressbar_armor_color "0 0.6 0" seta hud_progressbar_fuel_color "0.6 0.6 0" seta hud_progressbar_nexball_color "0.7 0.1 0" -seta _hud_panelorder "2 10 14 12 9 0 6 11 3 13 4 8 7 1 5 " +seta _hud_panelorder "11 0 9 2 10 14 12 6 3 13 4 8 7 1 5 " seta hud_configure_grid "1" seta hud_configure_grid_xsize "0.005000" seta hud_configure_grid_ysize "0.005000" seta hud_panel_weapons 1 -seta hud_panel_weapons_pos "0.910000 0.090000" -seta hud_panel_weapons_size "0.065000 0.640000" +seta hud_panel_weapons_pos "0.915000 0.085000" +seta hud_panel_weapons_size "0.060000 0.635000" seta hud_panel_weapons_bg "" seta hud_panel_weapons_bg_color "" seta hud_panel_weapons_bg_color_team "" @@ -138,7 +138,7 @@ seta hud_panel_racetimer_bg_border "" seta hud_panel_racetimer_bg_padding "" seta hud_panel_vote 1 -seta hud_panel_vote_pos "0.025000 0.655000" +seta hud_panel_vote_pos "0.025000 0.660000" seta hud_panel_vote_size "0.264218 0.102462" seta hud_panel_vote_bg "" seta hud_panel_vote_bg_color "" diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index a4e0e9a209..ddc7848a4e 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -477,7 +477,7 @@ void HUD_Panel_ExportCfg(string cfgname) fputs(fh, strcat("seta hud_panel_", panel_name, "_complainbubble_color_unavailable \"", cvar_string(strcat("hud_panel_", panel_name, "_complainbubble_color_unavailable")), "\"", "\n")); fputs(fh, strcat("seta hud_panel_", panel_name, "_ammo_color \"", cvar_string(strcat("hud_panel_", panel_name, "_ammo_color")), "\"", "\n")); fputs(fh, strcat("seta hud_panel_", panel_name, "_ammo_alpha \"", cvar_string(strcat("hud_panel_", panel_name, "_ammo_alpha")), "\"", "\n")); - fputs(fh, strcat("seta hud_panel_", panel_name, "_aspect \"", cvar_string(strcat("hud_panel_", panel_name, "_ammo_alpha")), "\"", "\n")); + fputs(fh, strcat("seta hud_panel_", panel_name, "_aspect \"", cvar_string(strcat("hud_panel_", panel_name, "_aspect")), "\"", "\n")); break; case HUD_PANEL_AMMO: fputs(fh, strcat("seta hud_panel_", panel_name, "_onlycurrent \"", cvar_string(strcat("hud_panel_", panel_name, "_onlycurrent")), "\"", "\n"));