Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 6166 → Rev 6167

/programs/cmm/appearance/appearance.c
89,8 → 89,8
}
else
{
DrawBar(0, yyy, list[active].w, list[active].item_h, system.color.grab_button);
if (i<list[active].count) WriteText(12,yyy+list[active].text_y,0x80,system.color.grab_button_text, #temp_filename);
DrawBar(0, yyy, list[active].w, list[active].item_h, 0x94AECE);
if (i<list[active].count) WriteText(12,yyy+list[active].text_y,0x80,0x000000, #temp_filename);
}
}
else
/programs/cmm/lib/system.h
2,10 → 2,18
#define INCLUDE_SYSTEM_H
#print "[include <system.h>]\n"
 
:struct COLORS
{
dword frame,grab,grab_button,grab_button_text,grab_text,
work,work_button,work_button_text,work_text,work_graph;
:struct COLORS {
dword
nonset1,
nonset2,
work_light,
work_dark,
nonset3,
work,
work_button,
work_button_text,
work_text,
work_graph;
void get();
};
 
13,7 → 21,7
{
EAX = 48;
EBX = 3;
ECX = #frame;
ECX = #nonset1;
EDX = 40;
$int 0x40
}