From 5932f468254d93e9b094c2aee1cd01de866fd861 Mon Sep 17 00:00:00 2001 From: wp_xxyyzz Date: Tue, 25 Mar 2025 12:49:02 +0000 Subject: [PATCH] LazMapViewer: Changed cache folder structure to provider/zoom/x/y. Issue #39087 git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9705 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/lazmapviewer/source/mvcache.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lazmapviewer/source/mvcache.pas b/components/lazmapviewer/source/mvcache.pas index 29e907793..98ec6abd2 100644 --- a/components/lazmapviewer/source/mvcache.pas +++ b/components/lazmapviewer/source/mvcache.pas @@ -328,7 +328,7 @@ begin if FLAT_CACHE then {%H-}Result := Format('%s_%d_%d_%d', [prov, TileId.X, TileId.Y, TileId.Z]) else - Result := SetDirSeparators(Format('%s/%d/%d_%d', [prov, TileID.Z, TileID.X, TileID.Y])); + Result := SetDirSeparators(Format('%s/%d/%d/%d', [prov, TileID.Z, TileID.X, TileID.Y])); end; { AddItem allows the insertion of an existing TPictureCacheItem.