I made a program and I am wondering why the splash screen hasn't loaded
Code:
;IMAGES
;load splash screen
splash$ = LoadImage("splashscreen.bmp") ;the splash screen
and later draws said image
Code:
;Display the splash screen for 7 seconds
DrawImage(splash$, 320,240)
Flip
Delay 7000
but I always get an error message saying "Image does not exist". I have the source code file in a folder with the image and I assumed that worked. I also tried using the actual directory on my computer "C:\Docs and settings...etc.", but that also failed. What am I doing wrong?
I will make C++ my bitch.