Looks playable to me. BTW press [ and ] to switch weapons 😉
@greenscreen59943 күн бұрын
For a 12 mhz cpu it is very playable:) BTW there are two executable files in the game folder(d286cga and d8088cga), I checked both and I don't see any difference(game looks the same and runs also the same), what is the difference between them?
@DookNookim3 күн бұрын
@@greenscreen5994 d8088cga is optimized for 8088 processors and d286cga is optimized for 286 processors. d286cga is smaller, so there's more memory left for the game. In theory, it should be faster. In practice, benchmarking (D286CGA.EXE/D8088CGA.EXE -timedemo demo3) show little difference.
@coffee1152 күн бұрын
I wonder if an -Os build would do any good?
@DookNookim2 күн бұрын
@@coffee115 The functions that are executed multiple times per frame are compiled with -Ofast, all the other functions with -Os. Compiling everything with -Os decreases performance by 10%.