aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/gp2x/gp2x.cpp
diff options
context:
space:
mode:
authorJohn Willis2010-10-20 13:00:58 +0000
committerJohn Willis2010-10-20 13:00:58 +0000
commit4e936522eeb0de8092ad74e8522b885550d934cb (patch)
tree38126aac0dcdf2094d71d0ec901b918e15330b4b /backends/platform/gp2x/gp2x.cpp
parent14e82dbe7f25c1a31cc8afbc712ee0246c7706dc (diff)
downloadscummvm-rg350-4e936522eeb0de8092ad74e8522b885550d934cb.tar.gz
scummvm-rg350-4e936522eeb0de8092ad74e8522b885550d934cb.tar.bz2
scummvm-rg350-4e936522eeb0de8092ad74e8522b885550d934cb.zip
GPH: Cleanup Readme and support scripts.
GP2X: Cleanup Readme. SDL: Change a few backend defines to GPH_DEVICE from the device name (blocking main and loadGFXMode so they can be written elsewhere). svn-id: r53639
Diffstat (limited to 'backends/platform/gp2x/gp2x.cpp')
-rw-r--r--backends/platform/gp2x/gp2x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/gp2x/gp2x.cpp b/backends/platform/gp2x/gp2x.cpp
index 5bd106e72c..88d4f9d632 100644
--- a/backends/platform/gp2x/gp2x.cpp
+++ b/backends/platform/gp2x/gp2x.cpp
@@ -115,7 +115,7 @@ void OSystem_GP2X::initBackend() {
char workDirName[PATH_MAX+1];
if (getcwd(workDirName, PATH_MAX) == NULL) {
- error("Could not obtain current working directory");
+ error("Could not obtain current working directory.");
} else {
printf("Current working directory: %s\n", workDirName);
}
@@ -328,7 +328,7 @@ void OSystem_GP2X::addSysArchivesToSearchSet(Common::SearchSet &s, int priority)
char workDirName[PATH_MAX+1];
if (getcwd(workDirName, PATH_MAX) == NULL) {
- error("Error: Could not obtain current working directory");
+ error("Error: Could not obtain current working directory.");
}
Common::FSNode workdirNode(workDirName);