mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-11 05:07:00 -04:00
'suffix' is no longer a safe global variable name in scripts;
Drop down list for word lists stay open after clicking on a prefix choice. git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@663 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
@@ -202,9 +202,6 @@ void sharp_downsample(const Image& img_in, Image& img_out, int amount) {
|
||||
|
||||
for (int y = 0 ; y < height ; ++y) {
|
||||
for (int x = 0 ; x < width ; ++x) {
|
||||
if (x==150&&y==150) {
|
||||
x=x;//break
|
||||
}
|
||||
// Filter using a kernel of the form
|
||||
/* -1 -1
|
||||
* -1 c c -1
|
||||
|
||||
@@ -90,3 +90,13 @@ Image rotate_image(const Image& image, int angle) {
|
||||
default: return image;
|
||||
}
|
||||
}
|
||||
|
||||
/*Bitmap rotate_bitmap(const Bitmap& bitmap, int angle) {
|
||||
switch (angle % 360) {
|
||||
case 90:
|
||||
case 180:
|
||||
case 270:
|
||||
default: return bitmap;
|
||||
}
|
||||
}
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user