mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-05 20:41:06 +00:00
be84374899
savegame.h instead. git-svn-id: https://svn.eduke32.com/eduke32@2198 1a8010ca-5511-0410-912e-c29ae57300e0
58 lines
1.8 KiB
C
58 lines
1.8 KiB
C
//-------------------------------------------------------------------------
|
|
/*
|
|
Copyright (C) 2010 EDuke32 developers and contributors
|
|
|
|
This file is part of EDuke32.
|
|
|
|
EDuke32 is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License version 2
|
|
as published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
//-------------------------------------------------------------------------
|
|
|
|
#ifndef __demo_h__
|
|
#define __demo_h__
|
|
|
|
extern FILE *g_demo_filePtr;
|
|
extern char firstdemofile[80];
|
|
|
|
extern int32_t demoplay_diffs;
|
|
extern int32_t demoplay_showsync;
|
|
extern int32_t demorec_diffcompress_cvar;
|
|
extern int32_t demorec_diffs_cvar;
|
|
extern int32_t demorec_difftics_cvar;
|
|
extern int32_t demorec_force_cvar;
|
|
extern int32_t demorec_seeds_cvar;
|
|
extern int32_t demorec_synccompress_cvar;
|
|
extern int32_t g_demo_cnt;
|
|
extern int32_t g_demo_goalCnt;
|
|
extern int32_t g_demo_paused;
|
|
extern int32_t g_demo_recFilePtr;
|
|
extern int32_t g_demo_rewind;
|
|
extern int32_t g_demo_showStats;
|
|
extern int32_t g_demo_soundToggle;
|
|
extern int32_t g_demo_totalCnt;
|
|
|
|
int32_t G_OpenDemoRead(int32_t g_whichDemo);
|
|
int32_t G_PlaybackDemo(void);
|
|
void demo_preparewarp(void);
|
|
void G_CloseDemoWrite(void);
|
|
void G_DemoRecord(void);
|
|
void G_OpenDemoWrite(void);
|
|
|
|
#if KRANDDEBUG
|
|
int32_t krd_print(const char *filename);
|
|
void krd_enable(int32_t which);
|
|
#endif
|
|
|
|
#endif
|