Change Title Screen Aspect Ratio?

David1334

Member
Hey guys, I was wondering, does the title screen file need to be a gif? And is there a way to make the title screen image larger than 320x240? I've tried scaling it but it just ends up being zoomed into a certain spot.
 
PNG is reccommended but GIF is supported for title screen (non animated)

there is a file called VIDEO.TXT that contains the video settings for the game.  Change the resolution to what you need.  You will have to decide what resolution you want your game to be.

Code:
video 1
colordepth 32

for example, most mods are using the video mode 1, but you can also set custom resolution, example
Code:
video 640 480


Code:
######################### Video Modes #############################
#
# Syntax: video [value]
#
# [value]:  0 = 320x240
#
#           1 = 480x272
#
#           2 = 640x480
#
#           3 = 720x480
#
#           4 = 800x480
#
#           5 = 800x600
#
#           6 = 960x540
#
###################################################################

video 1



######################### Colour Depth ############################
#
# Syntax: colourdepth [value]
#
# [value]:  8bit
#
#           16bit
#
#           32bit
#
###################################################################

colourdepth 32bit
 
BeasTie said:
Code:
######################### Colour Depth ############################
#
# Syntax: colourdepth [value]
#
# [value]:  8bit
#
#           16bit
#
#           32bit
#
###################################################################

colourdepth 32bit

Just FYI, we depreciated colourdepth several years ago - it's completely ignored and does nothing. All modules are run in 32bit depth color.

DC
 
Damon Caskey said:
BeasTie said:
Code:
######################### Colour Depth ############################
#
# Syntax: colourdepth [value]
#
# [value]:  8bit
#
#           16bit
#
#           32bit
#
###################################################################

colourdepth 32bit

Just FYI, we depreciated colourdepth several years ago - it's completely ignored and does nothing. All modules are run in 32bit depth color.

DC

Thank you guys for the advice, I was able to scale my image appropriately in GIMP and the title has come out just fine
 
Back
Top Bottom