Update loading-images with correct correct (#10)

Line 51 seems to have been a copy-paste of line 48.
BPM should be PNG in this comment.
This commit is contained in:
Olivier Berthonneau 2021-05-28 05:03:13 -06:00 committed by GitHub
parent 29a79b36df
commit 9495046876
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ func run() (err error) {
// Draw the BMP image on the first half of the window
bmpImage.BlitScaled(nil, surface, &sdl.Rect{X: 0, Y: 0, W: 400, H: 400})
// Draw the BMP image on the first half of the window
// Draw the PNG image on the first half of the window
pngImage.BlitScaled(nil, surface, &sdl.Rect{X: 400, Y: 0, W: 400, H: 400})
// Update the window surface with what we have drawn