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:
authorDalai Felinto <dfelinto@gmail.com>2011-02-07 21:42:07 +0300
committerDalai Felinto <dfelinto@gmail.com>2011-02-07 21:42:07 +0300
commit462b5823f43bcc267e40e718c8db99f10b562c5d (patch)
treee184a6308f6b8a34a0dad54b15fe666b578c091f /source/blender/makesrna
parent0a5595819609466c225add96064d6edff90d9e42 (diff)
Logic UI: Game Actuator options renaming
After talking with Ton Roosendaal we agreed on making those changes. I wonder if we should go for "Start Game" instead of "From File". But Space is not a constraint here so be it.
Diffstat (limited to 'source/blender/makesrna')
-rw-r--r--source/blender/makesrna/intern/rna_actuator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_actuator.c b/source/blender/makesrna/intern/rna_actuator.c
index ac109dfa0c5..f084e79d81f 100644
--- a/source/blender/makesrna/intern/rna_actuator.c
+++ b/source/blender/makesrna/intern/rna_actuator.c
@@ -1623,9 +1623,9 @@ static void rna_def_game_actuator(BlenderRNA *brna)
// keeping the load/start hacky for compatibility with 2.49
// ideally we could use ACT_GAME_START again and do a do_version()
- {ACT_GAME_LOAD, "START", 0, "Start New Game", ""},
- {ACT_GAME_RESTART, "RESTART", 0, "Restart This Game", ""},
- {ACT_GAME_QUIT, "QUIT", 0, "Quit This Game", ""},
+ {ACT_GAME_LOAD, "START", 0, "Start Game From File", ""},
+ {ACT_GAME_RESTART, "RESTART", 0, "Restart Game", ""},
+ {ACT_GAME_QUIT, "QUIT", 0, "Quit Game", ""},
{ACT_GAME_SAVECFG, "SAVECFG", 0, "Save bge.logic.globalDict", ""},
{ACT_GAME_LOADCFG, "LOADCFG", 0, "Load bge.logic.globalDict", ""},
{0, NULL, 0, NULL, NULL}};