minor bug fix for palette margins

This commit is contained in:
Zachary Pavlov 2009-07-28 16:14:42 +00:00
parent 6c89228477
commit 6aaf1a6bdc

View File

@ -282,7 +282,7 @@ parse_group_line(const vector_string &words) {
case S_margin:
int margin_override;
if (!string_to_int(word, margin_override)) {
if (string_to_int(word, margin_override)) {
group->set_margin_override(margin_override);
}
state = S_none;