Fixed bug 1799349: Islandtrack couldn't be used

because of 'images/sky2.rgb' not found.


git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/trunk/supertuxkart@1252 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
hikerstk 2007-09-21 06:41:12 +00:00
parent 462bf989f1
commit e5fd4c885c
15 changed files with 29 additions and 29 deletions

View File

@ -4,8 +4,8 @@
(name "On the Beach")
(description "Created by Ingo Ruhnke")
(music "mods/Boom_boom_boom.mod")
(screenshot "images/sshot-beach.rgb")
(topview "images/topview-beach.rgb")
(screenshot "sshot-beach.rgb")
(topview "topview-beach.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "BSODs Battlements")
(description "Created by Oliver & Steve Baker")
(music "oggs/Lava\ Lagoon_2.ogg")
(screenshot "images/sshot-bsodcastle.rgb")
(topview "images/topview-bsodcastle.rgb")
(screenshot "sshot-bsodcastle.rgb")
(topview "topview-bsodcastle.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Geeko Peak")
(description "Created by Oliver & Steve Baker")
(music "mods/tk2.mod")
(screenshot "images/sshot-geekopeak.rgb")
(topview "images/topview-geekopeak.rgb")
(screenshot "sshot-geekopeak.rgb")
(topview "topview-geekopeak.rgb")
)
;; EOF ;;

View File

@ -5,8 +5,8 @@
(description "Created by Oliver & Steve Baker")
(gravity 78.0)
(music "mods/tk5a.mod")
(screenshot "images/sshot-gownsbow.rgb")
(topview "images/topview-gownsbow.rgb")
(screenshot "sshot-gownsbow.rgb")
(topview "topview-gownsbow.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "The Island")
(description "Created by Johannes Sjolund")
(music "mods/Boom_boom_boom.mod")
(screenshot "images/sshot-islandtrack.rgb")
(topview "images/topview-islandtrack.rgb")
(screenshot "sshot-islandtrack.rgb")
(topview "topview-islandtrack.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Around the Lighthouse")
(description "Created by Ingo Ruhnke")
(music "mods/tk2.mod")
(screenshot "images/sshot-lighthouse.rgb")
(topview "images/topview-lighthouse.rgb")
(screenshot "sshot-lighthouse.rgb")
(topview "topview-lighthouse.rgb")
)
;; EOF ;;

View File

@ -16,8 +16,8 @@
(sun-specular 1.0 0.8 0.8 0.0)
(music "mods/tk5a.mod")
(screenshot "images/sshot-littlevolcano.rgb")
(topview "images/topview-littlevolcano.rgb")
(screenshot "sshot-littlevolcano.rgb")
(topview "topview-littlevolcano.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Oliver's Math Class")
(description "Created by Oliver & Steve Baker")
(music "mods/Boom_boom_boom.mod")
(screenshot "images/sshot-olivermath.rgb")
(topview "images/topview-olivermath.rgb")
(screenshot "sshot-olivermath.rgb")
(topview "topview-olivermath.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Race Track")
(description "Created by Ingo Ruhnke")
(music "mods/tk5a.mod" "mods/tk2.mod")
(screenshot "images/sshot-race.rgb")
(topview "images/topview-race.rgb")
(screenshot "sshot-race.rgb")
(topview "topview-race.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Shifting Sands")
(description "Created by Oliver & Steve Baker")
(music "mods/tk7.mod")
(screenshot "images/sshot-sandtrack.rgb")
(topview "images/topview-sandtrack.rgb")
(screenshot "sshot-sandtrack.rgb")
(topview "topview-sandtrack.rgb")
)
;; EOF ;;

View File

@ -5,8 +5,8 @@
(sky-color 0.0 0.0 0.0 0.0)
(description "Created by Ingo Ruhnke")
(music "oggs/Ethereal\ Spectrum\ \(ver\ loop\).ogg")
(screenshot "images/sshot-startrack.rgb")
(topview "images/topview-startrack.rgb")
(screenshot "sshot-startrack.rgb")
(topview "topview-startrack.rgb")
)
;; EOF ;;

View File

@ -15,8 +15,8 @@
(sun-specular 0.8 0.8 1.0 0.0)
(music "mods/tuxr.mod")
(screenshot "images/sshot-subseatrack.rgb")
(topview "images/topview-subseatrack.rgb")
(screenshot "sshot-subseatrack.rgb")
(topview "topview-subseatrack.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Tux Tollway")
(description "Created by Oliver & Steve Baker")
(music "mods/tk2.mod")
(screenshot "images/sshot-tuxtrack.rgb")
(topview "images/topview-tuxtrack.rgb")
(screenshot "sshot-tuxtrack.rgb")
(topview "topview-tuxtrack.rgb")
)
;; EOF ;;

View File

@ -4,8 +4,8 @@
(name "Volcano")
(description "Created by Ingo Ruhnke")
(music "mods/Boom_boom_boom.mod")
(screenshot "images/sshot-volcano.rgb")
(topview "images/topview-volcano.rgb")
(screenshot "sshot-volcano.rgb")
(topview "topview-volcano.rgb")
)
;; EOF ;;

View File

@ -240,7 +240,7 @@ Material *MaterialManager::getMaterial ( const char* fname )
// Add the material: the material constructor adds the material
// to (this) material_manager.
Material* m=new Material(fn,"");
Material* m=new Material(fname,"");
// Since fn is a pointer into fname_copy, fname_copy must be freed
// here, not earlier.
free(fname_copy);