1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples/gg/rectangles.v: add missing logo.png picture

This commit is contained in:
Delyan Angelov 2020-08-05 19:56:01 +03:00
parent d1257f5590
commit b22711ef33
2 changed files with 1 additions and 1 deletions

BIN
examples/gg/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View File

@ -28,7 +28,7 @@ fn main() {
user_data: app
init_fn: init_images
)
app.image = app.gg.create_image('logo.png')
app.image = app.gg.create_image(os.resource_abs_path('logo.png'))
app.gg.run()
}