egs_counters: 255 is the default background for most counters.

This commit is contained in:
Loïc Hoguin 2010-10-19 00:13:58 +02:00
parent d99c5388b9
commit af29f8a460
6 changed files with 1 additions and 6 deletions

View File

@ -15,7 +15,6 @@
%% Linear Line counter. %% Linear Line counter.
{bg, 255}.
{cursor, {640, 425}}. {cursor, {640, 425}}.
{t_name, 0}. {t_name, 0}.
{t_desc, 1}. {t_desc, 1}.

View File

@ -15,7 +15,6 @@
%% Space Dock counter. %% Space Dock counter.
{bg, 255}.
{cursor, {640, 425}}. {cursor, {640, 425}}.
{t_name, 0}. {t_name, 0}.
{t_desc, 1}. {t_desc, 1}.

View File

@ -15,7 +15,6 @@
%% Aurorey counter. %% Aurorey counter.
{bg, 255}.
{city, {1100000, 0, 4, 6}}. {city, {1100000, 0, 4, 6}}.
{cursor, {800, 450}}. {cursor, {800, 450}}.
{t_name, 0}. {t_name, 0}.

View File

@ -15,7 +15,6 @@
%% Falz Memoria counter. %% Falz Memoria counter.
{bg, 255}.
{city, {1100000, 0, 4, 5}}. {city, {1100000, 0, 4, 5}}.
{cursor, {1050, 400}}. {cursor, {1050, 400}}.
{t_name, 0}. {t_name, 0}.

View File

@ -15,7 +15,6 @@
%% Dallgun counter. %% Dallgun counter.
{bg, 255}.
{city, {1100000, 0, 4, 5}}. {city, {1100000, 0, 4, 5}}.
{cursor, {480, 455}}. {cursor, {480, 455}}.
{t_name, 0}. {t_name, 0}.

View File

@ -101,7 +101,7 @@ build_counter(ConfFilename, CounterNbl) ->
iolist_to_binary([<< 3:8 >> || _N <- OptsList]) iolist_to_binary([<< 3:8 >> || _N <- OptsList])
end, end,
Opts2 = if byte_size(Opts) rem 2 =:= 0 -> Opts; true -> << Opts/binary, 0 >> end, Opts2 = if byte_size(Opts) rem 2 =:= 0 -> Opts; true -> << Opts/binary, 0 >> end,
[{bg, proplists:get_value(bg, Settings)}, {opts, Opts2}, {pack, Pack}]. [{bg, proplists:get_value(bg, Settings, 255)}, {opts, Opts2}, {pack, Pack}].
build_counter_groups(Groups, PosList, SizeList) -> build_counter_groups(Groups, PosList, SizeList) ->
build_counter_groups(Groups, PosList, SizeList, []). build_counter_groups(Groups, PosList, SizeList, []).