mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-05-31 09:01:09 +00:00
Fix all whitespace errors
Excluding 3rd party files.
This commit is contained in:
parent
eac3112d2d
commit
c7c187e4dc
424 changed files with 5695 additions and 5729 deletions
|
@ -2,7 +2,7 @@
|
|||
===========================================================================
|
||||
|
||||
Doom 3 GPL Source Code
|
||||
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
|
||||
Copyright (C) 1999-2011 id Software LLC, a ZeniMax Media company.
|
||||
|
||||
This file is part of the Doom 3 GPL Source Code ("Doom 3 Source Code").
|
||||
|
||||
|
@ -29,28 +29,28 @@ If you have questions concerning this license or the applicable additional terms
|
|||
#ifndef __SCRIPT_INTERPRETER_H__
|
||||
#define __SCRIPT_INTERPRETER_H__
|
||||
|
||||
#define MAX_STACK_DEPTH 64
|
||||
#define LOCALSTACK_SIZE 6144
|
||||
#define MAX_STACK_DEPTH 64
|
||||
#define LOCALSTACK_SIZE 6144
|
||||
|
||||
typedef struct prstack_s {
|
||||
int s;
|
||||
int s;
|
||||
const function_t *f;
|
||||
int stackbase;
|
||||
int stackbase;
|
||||
} prstack_t;
|
||||
|
||||
class idInterpreter {
|
||||
private:
|
||||
prstack_t callStack[ MAX_STACK_DEPTH ];
|
||||
int callStackDepth;
|
||||
int maxStackDepth;
|
||||
int callStackDepth;
|
||||
int maxStackDepth;
|
||||
|
||||
byte localstack[ LOCALSTACK_SIZE ];
|
||||
int localstackUsed;
|
||||
int localstackBase;
|
||||
int maxLocalstackUsed;
|
||||
int localstackUsed;
|
||||
int localstackBase;
|
||||
int maxLocalstackUsed;
|
||||
|
||||
const function_t *currentFunction;
|
||||
int instructionPointer;
|
||||
int instructionPointer;
|
||||
|
||||
int popParms;
|
||||
const idEventDef *multiFrameEvent;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue