Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-04-18 01:14:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-18 01:14:55 +0400
commitbe0b8ccfaaa98118468c8fec971792ab1123eaca (patch)
treec5a0f24fe547de8b411298bbe8df9cdc12b4a530 /source/creator
parent45dee507aaaa159e5b0bda1f6fc81a928f78e17b (diff)
Used GET_INT_FROM_POINTER to get rid of many warnings that only occurred with 64bit os's
Also use Py_ssize_t which we might need to define for older python's
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 24cdfe88940..e91705345c6 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -227,7 +227,7 @@ static void print_help(void)
printf (" -v\t\tPrint Blender version and exit\n");
printf (" --\t\tEnds option processing. Following arguments are \n");
printf (" \t\t passed unchanged. Access via Python's sys.argv\n");
- printf ("\nEnironment Variables:\n");
+ printf ("\nEnvironment Variables:\n");
printf (" $HOME\t\t\tStore files such as .blender/ .B.blend .Bfs .Blog here.\n");
#ifdef WIN32
printf (" $TEMP\t\tStore temporary files here.\n");
@@ -271,7 +271,6 @@ int main(int argc, char **argv)
{
int a, i, stax=0, stay=0, sizx, sizy, scr_init = 0;
SYS_SystemHandle syshandle;
- Scene *sce;
#if defined(WIN32) || defined (__linux__)
int audio = 1;