Skip to content

Commit

Permalink
Fixed urls.
Browse files Browse the repository at this point in the history
  • Loading branch information
KirovAir committed Sep 18, 2019
1 parent 53e9b78 commit 0f83fbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![Screenshot](https://https://raw.githubusercontent.com/KirovAir/TwilightBoxart/master/img/screenshot.png)
![Screenshot](https://github.com/KirovAir/TwilightBoxart/raw/master/img/screenshot.png)

# Twilight Boxart
A boxart downloader written in C#. Uses various sources and scan methods to determine the correct boxart.
Expand Down
2 changes: 1 addition & 1 deletion TwilightBoxart/Models/DsiRom.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public override void DownloadBoxArt(string targetFile)
// Todo: Make this less ugly, embedded and optional.
if (TitleId[0] == 'K' || TitleId[0] == 'H') // This is DSiWare. There is no BoxArt available (probably) so use a default image.
{
ImgDownloader.DownloadAndResize("https://raw.githubusercontent.com/KirovAir/TwilightBoxart/master/img/dsiware.jpg", targetFile);
ImgDownloader.DownloadAndResize("https://github.com/KirovAir/TwilightBoxart/raw/master/img/dsiware.jpg", targetFile);
}
}
}
Expand Down

0 comments on commit 0f83fbc

Please sign in to comment.