mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-09 01:01:07 +00:00
constified basedir member of quakeparms_t
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@305 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
parent
ef7e98cb02
commit
4e60e59d39
1 changed files with 4 additions and 4 deletions
|
@ -203,15 +203,15 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
char *basedir;
|
const char *basedir;
|
||||||
char *userdir; // user's directory on UNIX platforms.
|
const char *userdir; // user's directory on UNIX platforms.
|
||||||
// if user directories are enabled, basedir
|
// if user directories are enabled, basedir
|
||||||
// and userdir will point to different
|
// and userdir will point to different
|
||||||
// memory locations, otherwise to the same.
|
// memory locations, otherwise to the same.
|
||||||
int argc;
|
int argc;
|
||||||
char **argv;
|
char **argv;
|
||||||
void *membase;
|
void *membase;
|
||||||
int memsize;
|
int memsize;
|
||||||
} quakeparms_t;
|
} quakeparms_t;
|
||||||
|
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
|
|
Loading…
Reference in a new issue