Jump to content
Sign in to follow this  
Harald_Kraft

Please add me as Flylegacy Developer

Recommended Posts

Hi ChrisI created my Sourceforge ID as hkraft. Please add me to the project as developerthanksHarald

Share this post


Link to post
Share on other sites
Guest roland_lfor

Harald,Did you get some news from Chris ?Are you registered ?- roland -

Share this post


Link to post
Share on other sites

Hi rolandYes, chris added me to the list but I seem to be the only one with Visual studio 2005 an so I am still fighting with some problems, exspecially "assertion errors".Visual Studio 2005 does not like empty strings for "string operation" so i had to change quite a lot and still have not solved allHarald

Share this post


Link to post
Share on other sites
Guest roland_lfor

Yes you are right, we are all on the old Visual 6.Don't you have it ? It would be easier.- roland -

Share this post


Link to post
Share on other sites
Guest Chris Wallace

>Visual Studio 2005 does not like empty strings for "string>operation" so i had to change quite a lot and still have not>solved allNot sure what you mean here. Are you compiling as a normal C++ application? What "string operation" are you referring to? Can you post some line numbers? Either here or on the list...thanks.Chris WallaceOttawa, Canada

Share this post


Link to post
Share on other sites

Hi rolandI have no idea where to get a legal copy of VS6. I got my VS2005 copy at last years IT-Forum thats the reason I am using it.HArald

Share this post


Link to post
Share on other sites

Hi chris here are some changes I had to make. The problem are all emty lines (in ini files or similar) befor or after removing all whitespaces that trigger an assertion error in VS2005.I am sure my solutions are not the best so I kept them privat for now but I hope you can see what my problem is.HaraldStream.cpp **************************Line 68 change// If not a comment or empty line, // then go ahead and parse it if ((strncmp (test, "//", 2) != 0) && (*test != 'r') && (*test != 'n')) {Fuitheme.cpp Line 537 insert if ((strncmp (s, "rn", 2) == 0)) { // empty line pgets (s, 256, p); continue; } ;Fuimanager.cpp Line 118 insert if ((strncmp (s, "rn", 2) == 0)) { // empty line pgets (s, 256, p); continue; } ;ini.cpp Line 950 insert // ignore empty lines if ((strncmp (s, "n", 1) == 0)) { continue; } ;Menu.cpp *************************Line 211 added int i=0; Line 1577 // for(index = 0, iComm = 0; index < dbRunway->GetNumRecords(); index++) for(int index = 0, iComm = 0; index < dbRunway->GetNumRecords(); index++)Panels.cpp **************************Line 95 change// CPanel::CPanel (Tag id, const char* filename)CPanel::CPanel (Tag id, char* filename)Panels.h ***********************Line 62 change // CPanel (Tag id, const char* filename); CPanel (Tag id, char* filename);Situation.cpp ********************** Line 530 change //for(i = 0; i < uiEngines; i++) for(int i = 0; i < uiEngines; i++)Line 541 Change //for(i = 0; i < uiEngines; i++) for(int i = 0; i < uiEngines; i++)Starimage.cpp ********************** Line 141 change// static char* getToken (const char* s, char* token, int size)static char* getToken (char* s, char* token, int size)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

  • Tom Allensworth,
    Founder of AVSIM Online


  • Flight Simulation's Premier Resource!

    AVSIM is a free service to the flight simulation community. AVSIM is staffed completely by volunteers and all funds donated to AVSIM go directly back to supporting the community. Your donation here helps to pay our bandwidth costs, emergency funding, and other general costs that crop up from time to time. Thank you for your support!

    Click here for more information and to see all donations year to date.
×
×
  • Create New...