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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2008-09-11 17:00:54 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2008-09-11 17:00:54 +0400
commit729af67742c3296ee3214c1e4981e4b689d57477 (patch)
tree4cb58faa258a79db4c29e68b4f315a0bb6c80749 /source/gameengine/GamePlayer/ghost
parent695c354b61955b8521b05a3e6458cddb496316ee (diff)
Bugfix: saved game engine runtimes failed to load library .blend
files with relative paths.
Diffstat (limited to 'source/gameengine/GamePlayer/ghost')
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_ghost.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp b/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
index d44e983af89..3a9e59c3c25 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
@@ -613,7 +613,7 @@ int main(int argc, char** argv)
}
else
{
- bfd = load_game_data(argv[0], filename);
+ bfd = load_game_data(bprogname, filename);
}
//::printf("game data loaded from %s\n", filename);