aboutsummaryrefslogtreecommitdiff
path: root/games/toycars/files/patch-toycars__track_editor_src_TrackView.cxx
blob: b9626782a041dae8bd1e2bfc121b77fb1ab000ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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];