mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-27 12:50:44 +00:00
Moved screenshot/movie consvar externs to m_misc.h
This commit is contained in:
parent
e2a4c59e21
commit
933508db89
2 changed files with 8 additions and 11 deletions
|
@ -115,17 +115,7 @@ extern consvar_t cv_maxping;
|
||||||
|
|
||||||
extern consvar_t cv_skipmapcheck;
|
extern consvar_t cv_skipmapcheck;
|
||||||
|
|
||||||
extern consvar_t cv_sleep, cv_screenshot_option, cv_screenshot_folder;
|
extern consvar_t cv_sleep;
|
||||||
|
|
||||||
extern consvar_t cv_moviemode;
|
|
||||||
|
|
||||||
extern consvar_t cv_zlib_level, cv_zlib_memory, cv_zlib_strategy;
|
|
||||||
|
|
||||||
extern consvar_t cv_zlib_window_bits, cv_zlib_levela, cv_zlib_memorya;
|
|
||||||
|
|
||||||
extern consvar_t cv_zlib_strategya, cv_zlib_window_bitsa;
|
|
||||||
|
|
||||||
extern consvar_t cv_apng_delay;
|
|
||||||
|
|
||||||
typedef enum
|
typedef enum
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include "tables.h"
|
#include "tables.h"
|
||||||
|
|
||||||
#include "d_event.h" // Screenshot responder
|
#include "d_event.h" // Screenshot responder
|
||||||
|
#include "command.h"
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
MM_OFF = 0,
|
MM_OFF = 0,
|
||||||
|
@ -28,6 +29,12 @@ typedef enum {
|
||||||
} moviemode_t;
|
} moviemode_t;
|
||||||
extern moviemode_t moviemode;
|
extern moviemode_t moviemode;
|
||||||
|
|
||||||
|
extern consvar_t cv_screenshot_option, cv_screenshot_folder;
|
||||||
|
extern consvar_t cv_moviemode;
|
||||||
|
extern consvar_t cv_zlib_memory, cv_zlib_level, cv_zlib_strategy, cv_zlib_window_bits;
|
||||||
|
extern consvar_t cv_zlib_memorya, cv_zlib_levela, cv_zlib_strategya, cv_zlib_window_bitsa;
|
||||||
|
extern consvar_t cv_apng_delay;
|
||||||
|
|
||||||
void M_StartMovie(void);
|
void M_StartMovie(void);
|
||||||
void M_SaveFrame(void);
|
void M_SaveFrame(void);
|
||||||
void M_StopMovie(void);
|
void M_StopMovie(void);
|
||||||
|
|
Loading…
Reference in a new issue