Same error here on Win7 x64, but I've ran the code supplied and it it appears to be the screen depth of 32 that was causing the errors.
Changing it to 16 works fine.
window = OpenScreen( xres , yres , 16 , "Paradox Fucktro")
Or
Windowed mode:
;window = OpenScreen( xres , yres , 16 , "Paradox Fucktro")
window = OpenWindow(99,0,0,xres,yres,"",#PB_Window_ScreenCentered|#PB_Window_WindowCentered|#PB_Window_BorderLess)
OpenWindowedScreen(WindowID(99),0,0,xres,yres,0,0,0)
ShowCursor_(0)
I've attached the windowed one here.
[Edit] Attached the fullscreen version now. 16bit depth 8 bit colour gfx.