git-svn-id: https://svn.eduke32.com/eduke32@1074 1a8010ca-5511-0410-912e-c29ae57300e0

This commit is contained in:
terminx 2008-09-24 10:20:18 +00:00
parent a43fa91b64
commit 44c3436075
2 changed files with 3 additions and 3 deletions

View File

@ -43,7 +43,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <windows.h>
#endif
#define BUILDDATE " 20080917"
#define BUILDDATE " 20080924"
#define VERSION " 1.2.0devel"
static int floor_over_floor;
@ -6451,7 +6451,7 @@ static void Keys3d(void)
static void DoSpriteSearch(int dir) // <0: backwards, >=0: forwards
{
char did_wrap = 0;
int i, j, k;
int i, j, k = 0;
for (dir<0 ? gs_cursprite-- : gs_cursprite++;; dir<0 ? gs_cursprite-- : gs_cursprite++)
{

View File

@ -25,7 +25,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define APPNAME "EDuke32"
#define VERSION " 1.5.0devel"
// this is checked against http://eduke32.com/VERSION
#define BUILDDATE " 20080917"
#define BUILDDATE " 20080924"
#define HEAD2 APPNAME VERSION BUILDDATE
#ifdef __cplusplus