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.c')
-rw-r--r--source/creator/creator.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 1e002869853..6244032bbcf 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -372,13 +372,6 @@ static int prefsize(int argc, char **argv, void *data)
return 4;
}
-static int swap_exchange(int argc, char **argv, void *data)
-{
- G.f |= G_SWAP_EXCHANGE;
-
- return 0;
-}
-
static int with_borders(int argc, char **argv, void *data)
{
/* with borders XXX OLD CRUFT!*/
@@ -846,7 +839,6 @@ void setupArguments(bContext *C, bArgs *ba, SYS_SystemHandle *syshandle)
/* second pass: custom window stuff */
BLI_argsAdd(ba, "-p", 2, prefsize, NULL);
- BLI_argsAdd(ba, "-E", 2, swap_exchange, NULL);
BLI_argsAdd(ba, "-w", 2, with_borders, NULL);
BLI_argsAdd(ba, "-W", 2, without_borders, NULL);
BLI_argsAdd(ba, "-R", 2, register_extension, ba);