Fix Android Downloader, Added zombie to 10E set, fixed Liliana the Last Hope.

This commit is contained in:
valfieri
2019-09-17 00:14:34 +02:00
parent 43be15e832
commit 7a19ae8f40
4 changed files with 9 additions and 5 deletions

View File

@@ -475,6 +475,8 @@ public class ImgDownloader {
cardurl = "https://img.scryfall.com/cards/large/front/5/b/5b9f471a-1822-4981-95a9-8923d83ddcbf.jpg?1562702075";
else if (id.equals("3896523t"))
cardurl = "https://img.scryfall.com/cards/large/front/d/0/d0cd85cc-ad22-446b-8378-5eb69fee1959.jpg?1562840712";
else if(id.equals("4143881t"))
cardurl = "https://img.scryfall.com/cards/large/front/8/a/8a73e348-5bf1-4465-978b-3f31408bade9.jpg?1561757530";
else if (id.equals("7897511"))
cardurl = "https://img.scryfall.com/cards/large/front/a/4/a4f4aa3b-c64a-4430-b1a2-a7fca87d0a22.jpg?1562763433";
else if (id.equals("7868811"))

View File

@@ -515,7 +515,7 @@ public class SDLActivity extends Activity implements OnKeyListener {
AlertDialog.Builder resChooser = new AlertDialog.Builder(this);
resChooser.setTitle("Which resolution would you like to use?");
final String[] availableRes = new String[]{"High - (672x936)", "Medium - (488x680)", "Low - (244x340)", "Tiny - (280x255)"};
final String[] availableRes = new String[]{"High - (672x936)", "Medium - (488x680)", "Low - (244x340)", "Tiny - (180x255)"};
resChooser.setSingleChoiceItems(availableRes, 0, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {