aboutsummaryrefslogtreecommitdiff
path: root/games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx')
-rw-r--r--games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx33
1 files changed, 33 insertions, 0 deletions
diff --git a/games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx b/games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx
new file mode 100644
index 000000000000..b9626782a041
--- /dev/null
+++ b/games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx
@@ -0,0 +1,33 @@
+--- toycars_track_editor/src/TrackView.cxx.orig 2009-06-28 03:13:24 UTC
++++ toycars_track_editor/src/TrackView.cxx
+@@ -89,7 +89,7 @@ TiXmlDocument *findXMLFile(const char *f
+ //{jpg,png,bmp,pnm,pbm,pgm,ppm}
+ Fl_Image* loadImage(const char *filename)
+ {
+- char *suffix = strrchr(filename, '.');
++ const char *suffix = strrchr(filename, '.');
+ if (suffix == NULL)
+ return NULL;
+ if (strcmp(suffix,".jpg") == 0)
+@@ -956,8 +956,8 @@ void TrackView::importImage(const char *
+ // installs map into user data directory
+ void TrackView::installMap(const char *name)
+ {
+-#ifdef WIN32
+- fl_alert("Unfortunately this is unsupported on Windows at this time.\nYou may still install maps manually by saving them to a folder and placing it inside the data\\tracks directory and editing the tracklist.xml file.");
++#if 1
++ fl_alert("Unfortunately this is unsupported at this time.\nYou may still install maps manually by saving them to a folder and placing it inside the data\\tracks directory and editing the tracklist.xml file.");
+ return;
+ #else
+ char fullname[1024];
+@@ -1033,8 +1033,8 @@ void TrackView::installMap(const char *n
+ // nb: doesn't remove track data itself, only remove entry from tracklist xml file.
+ void TrackView::uninstallMap(const char *name)
+ {
+-#ifdef WIN32
+- fl_alert("Unfortunately this is unsupported on Windows at this time.\nYou may still uninstall maps manually by removing them from the data\\tracks directory and editing the tracklist.xml file.");
++#if 1
++ fl_alert("Unfortunately this is unsupported at this time.\nYou may still uninstall maps manually by removing them from the data\\tracks directory and editing the tracklist.xml file.");
+ return;
+ #else
+ char fullname[1024];