projects
/
supertux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
627f795
)
Apparently C++ doesn't automatically convert from std::string to const char*...
author
Mathnerd314
<man.is.allan@gmail.com>
Wed, 3 Mar 2010 07:07:41 +0000
(07:07 +0000)
committer
Mathnerd314
<man.is.allan@gmail.com>
Wed, 3 Mar 2010 07:07:41 +0000
(07:07 +0000)
SVN-Revision: 6528
src/supertux/world.cpp
patch
|
blob
|
history
diff --git
a/src/supertux/world.cpp
b/src/supertux/world.cpp
index
60fe209
..
f821dd4
100644
(file)
--- a/
src/supertux/world.cpp
+++ b/
src/supertux/world.cpp
@@
-197,7
+197,7
@@
World::load_state()
{
using namespace scripting;
- if(PHYSFS_exists(savegame_filename)) {
+ if(PHYSFS_exists(savegame_filename
.c_str()
)) {
try {
lisp::Parser parser;
const lisp::Lisp* root = parser.parse(savegame_filename);