Jump to content
Eternal Lands Official Forums
Sign in to follow this  
Roja

Bug with f2 in latest CVS

Recommended Posts

Just downloaded & compiled the latest CVS client.

 

Whenever I try to do the f2 for a hyperlink, the client crashes. I didn't have anything relevant in the EL error log.

 

The only thing I noticed was that when it finished compiling the client it opened misc.c and marked line 380:

go_to_url_thread = SDL_CreateThread (go_to_url(url), 0);

I dont know if that has anything to do with this, but just thought I'd mention it in case.

 

 

Also here are the errors from the compiler(however the client did compile and i can run it, this is the only crash that happened so far):

elc/rules.c: In function `init_rules_interface':
elc/rules.c:474: warning: unused variable `window_ratio'

elc/rules.c: In function `draw_rules_interface':
elc/rules.c:497: warning: unused variable `width'
elc/rules.c:497: warning: unused variable `height'

Warning: .drectve `/DEFAULTLIB:"uuid.lib" /DEFAULTLIB:"uuid.lib" ' unrecognized

Execution terminated

Share this post


Link to post
Share on other sites

go_to_url_thread = SDL_CreateThread (go_to_url(url), 0);

 

Yes, that's where it's crashing. A quick fix would be to replace that with:

 

go_to_url_thread = SDL_CreateThread (go_to_url, url);

 

It's Torg's code, so ask him to fix it.

Share this post


Link to post
Share on other sites

go_to_url_thread = SDL_CreateThread (go_to_url(url), 0);

 

Yes, that's where it's crashing. A quick fix would be to replace that with:

 

go_to_url_thread = SDL_CreateThread (go_to_url, url);

 

It's Torg's code, so ask him to fix it.

Dammit. :-S

It is fixed in CVS (thanks Learner).

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  

  • Recently Browsing   0 members

    No registered users viewing this page.

×