Jump to content

SVN Revision Bug Guide


ryandeboer

Recommended Posts

Stick with Rev51 for now (for bug testing reference), its the newest one to work so far without major bugs. Rev11 was the earliest exe I got to work, which is closest to Demo 3.

Rev71 Broken. Mentat OK, but in game left mouse seems broken for building placement, instant build. Log says later briefings are broken.

Rev70 Broken. Can't click proceed, left mouse seems broken for building placement, instant build, skirmish is the only thing that works.

Rev61 Broken. Mentat stuff officially broken. Mentat has a blue box.

Rev60 Broken. Extremely slow.

Rev58 Broken. Extremely slow.

Rev55 Broken. Extremely slow.

Rev53 Broken. Extremely slow.

Rev52 Broken. Extremely slow.

Rev51 OK. Mouse pointer bug fixed.

Prior revisions that seemed OK: 45, 40, 25, 24, 11.

Bug that has been around since Rev11:

* Modify ini.cpp. Fixing this bug will let you advance to the 2nd level. This problem is with Visual C++ Express 2005 - without initializing this string, it will be filled with corrupt data.

Change:

bool INI_WordValueBOOL(char result[MAX_LINE_LENGTH])

{

  // use INI_WordValueCHAR to know if its 'true'

  char val[256];

To:

bool INI_WordValueBOOL(char result[MAX_LINE_LENGTH])

{

  // use INI_WordValueCHAR to know if its 'true'

  char val[256]="";

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...