Hi!
I made litte changes in the startup-video-settings.
Maybe now it works for you?
It's compiled it with the pro 6.50 version.
An exe is standalone and do not depends on the version you have installed.
Just download it again...
The placement (no resice) of the text/logo is done every 20 frames by this:
Code:
// place fps-info (top, right)
txt_fps.pos_x=screen_size.x-str_len(str_fps)*17-20; // 17 = char-width
// place resolution-info (bottom, left)
txt_screen.pos_y=screen_size.y-60;
// place logo (bottom, right)
pan_logo.pos_x=screen_size.x-bmap_width(bmp_logo)-20;
pan_logo.pos_y=screen_size.y-bmap_height(bmp_logo)-20;
mercuryus