01-22-2026, 05:02 PM
I know, I know. The problem is ME; I'm a complete idiot trying to understand hardware images...
Why isn't something as simple as this working? What on earth am I doing wrong? My apologies to everyone, and thank you for your patience
Why isn't something as simple as this working? What on earth am I doing wrong? My apologies to everyone, and thank you for your patience

Code: (Select All)
Option _Explicit
Randomize Timer
Dim As Long hardwareScreen, workScreen, Nave, Fondo, i
Screen _NewImage(1920, 1080, 32)
_FullScreen , _Smooth
workScreen = _NewImage(1920, 1080, 32)
Fondo = _LoadImage("C:\STRC\Espacio\3.jpg")
Nave = _LoadImage("C:\STRC\Naves\Constitution2\nave.png")
_PutImage (0, 0)-Step(1920, 1080), Fondo, workScreen
For i = 1 To 100
_PutImage (Rnd * 1920, Rnd * 1080), Nave, workScreen
Next
hardwareScreen = _CopyImage(workScreen, 33)
_Dest 0
_DisplayOrder _Hardware
_PutImage (0, 0), hardwareScreen
_Display
End
10 PRINT "Hola!
"
20 GOTO 10
"20 GOTO 10

