# HG changeset patch # User František Kučera # Date 1703895512 -3600 # Node ID e15d04d98fca531a355f92388491486d067de72b # Parent 69903e30b00d973a28153c1fcd1e889cbe366f7d new default texture: horizon diff -r 69903e30b00d -r e15d04d98fca Shark.cpp --- a/Shark.cpp Thu Dec 28 15:01:13 2023 +0100 +++ b/Shark.cpp Sat Dec 30 01:18:32 2023 +0100 @@ -576,7 +576,7 @@ void Shark::Impl::loadTextures() { // Load default texture if there is no configured: if (cfg.textures.empty()) - cfg.textures.push_back({getDefaultFile("textures/default.png")}); + cfg.textures.push_back({getDefaultFile("textures/default.img")}); for (const Configuration::Texture& tex : cfg.textures) { std::shared_ptr diff -r 69903e30b00d -r e15d04d98fca textures/default.img --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/textures/default.img Sat Dec 30 01:18:32 2023 +0100 @@ -0,0 +1,1 @@ +horizon.jpeg \ No newline at end of file diff -r 69903e30b00d -r e15d04d98fca textures/default.png --- a/textures/default.png Thu Dec 28 15:01:13 2023 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,1 +0,0 @@ -jazz.png \ No newline at end of file diff -r 69903e30b00d -r e15d04d98fca textures/horizon.jpeg Binary file textures/horizon.jpeg has changed diff -r 69903e30b00d -r e15d04d98fca textures/jazz.png Binary file textures/jazz.png has changed