* (DinkC) DinkC version is now reported as 110 instead of 109

* (Bugfix) Fixed issue with set_frame_frame, the DMOD Mayhem now works (is this DMOD for pyschopaths?!?! Not saying I didn't have fun though)
* (Bugfix) Fixed another incorrect color issue with fill_screen
* (Bugfix) Fixed horrible issue where the last line in a script might not get run.  This fixed the intro screen to Lost Forest Romp

git-svn-id: svn://rtsoft.com/rtsvn/projects/RTDink@1486 353e56fe-9613-0410-8469-b96ad8e6f29c
This commit is contained in:
seth 2017-09-17 04:54:34 +00:00
parent 04f68e8125
commit d8bb8b8c77
6 changed files with 125 additions and 51 deletions

View file

@ -201,7 +201,7 @@ struct sequence
const int32 C_DINK_SCREENSIZE_X = 640;
const int32 C_DINK_SCREENSIZE_Y = 480;
const int32 C_DINK_VERSION = 109;
const int32 C_DINK_VERSION = 110;
const int32 num_soundbanks = 20;
const int32 max_idata = 1000;
const int32 max_sounds = 100;
@ -593,6 +593,7 @@ struct pic_info
int16 xoffset;
int16 m_parentSeq;
byte m_bCustomSettingsApplied;
int16 m_parentFrame;
};
extern LPDIRECTDRAWSURFACE g_pSpriteSurface[C_MAX_SPRITES];