aboutsummaryrefslogtreecommitdiff
path: root/src/sc_editor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sc_editor.c')
-rw-r--r--src/sc_editor.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/sc_editor.c b/src/sc_editor.c
index f2bdbf5..1736b47 100644
--- a/src/sc_editor.c
+++ b/src/sc_editor.c
@@ -1202,9 +1202,10 @@ static void check_import_size(SCEditor *e)
int new_import_width;
new_import_width = e->w/2;
- e->import_height = (new_import_width *e->import_height)
- / e->w;
+ e->import_height = (new_import_width * e->import_height) /
+ e->import_width;
e->import_width = new_import_width;
+
}
if ( e->import_height > e->h ) {
@@ -1212,9 +1213,10 @@ static void check_import_size(SCEditor *e)
int new_import_height;
new_import_height = e->w/2;
- e->import_width = (new_import_height*e->import_width)
- / e->import_height;
+ e->import_width = (new_import_height*e->import_width) /
+ e->import_height;
e->import_height = new_import_height;
+
}
}