Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

dos-like

Engine for making things with a MS-DOS feel, but for modern platforms · By Mattias Gustavsson

Different "frame" options?

A topic by Blodyavenger created Jan 10, 2022 Views: 317 Replies: 2
Viewing posts 1 to 2

Would it be possible to add an option to fade gameplay area into black instead to monitor frame? If not, could you point me in right direction where to do that? Thank you!

Developer

Actually, you can define the preprocessor symbol DISABLE_SCREEN_FRAME, and it will get rid of the frame and use a black background.

You can use it by either defining the symbol from command line: tcc\tcc source\raycast.c source\dos.c -DDISABLE_SCREEN_FRAME or by adding it to the top of dos.c like this


Hopefully I’ll get around to writing documentation at some point- these things are almost impossible to find out right now.

Perfect, thank you :)