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:
Diffstat (limited to 'source/creator/creator_args.c')
-rw-r--r--source/creator/creator_args.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/creator/creator_args.c b/source/creator/creator_args.c
index d2f45071496..863a88aeb2a 100644
--- a/source/creator/creator_args.c
+++ b/source/creator/creator_args.c
@@ -883,7 +883,7 @@ static const char arg_handle_debug_mode_generic_set_doc_gpumem[] =
static int arg_handle_debug_mode_generic_set(int UNUSED(argc), const char **UNUSED(argv), void *data)
{
- G.debug |= GET_INT_FROM_POINTER(data);
+ G.debug |= POINTER_AS_INT(data);
return 0;
}