Rune Central

The Official Rune Quake Message Board
It is currently Thu Nov 29, 2012 11:05 am

All times are UTC - 5 hours




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: Weird JoeQuake Crash (CL_SMARTJUMP)
PostPosted: Tue Dec 06, 2005 12:50 am 
Offline

Joined: Sun Mar 09, 2003 9:47 pm
Posts: 1583
Location: Ohio
If I connect to QUAKE.IHOC.NET or XCTF.CLAN-RUM.ORG and then press the space bar to play, JoeQuake 1189 GL build crashes every time when cl_smartjump is 1.


This only occurs with cl_smartjump 1. If cl_smartjump is 0, it does not crash.

Strange.

(Note: when you are connected to the IHOC or XCTF server, you are an observer -- kind of like flying around with NOCLIP --- until you press the space bar to join the game).


Top
 Profile  
 
 Post subject:
PostPosted: Wed Dec 07, 2005 1:55 am 
Offline
quake.intertex.net
User avatar

Joined: Sat Nov 15, 2003 6:39 pm
Posts: 243
Location: Kansas City!
looked in the source...

original:
Code:
void IN_JumpUp (void)
{
   if (cl_smartjump.value)
      KeyUp (&in_up);
   KeyUp (&in_jump);
}


fixed?
Code:
void IN_JumpUp (void)
{
   if (cl_smartjump.value)
      KeyUp (&in_up);
   else //<--- R00k should this be added here?
      KeyUp (&in_jump);
}


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC - 5 hours


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group