diff options
Diffstat (limited to '')
-rw-r--r-- | src/base/UIni.pas | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/base/UIni.pas b/src/base/UIni.pas index d809c790..3ed3f3d5 100644 --- a/src/base/UIni.pas +++ b/src/base/UIni.pas @@ -902,8 +902,11 @@ begin LoadScreenModes(IniFile); - // TextureSize - TextureSize := GetArrayIndex(ITextureSize, IniFile.ReadString('Graphics', 'TextureSize', ITextureSize[2])); + // TextureSize (aka CachedCoverSize) + // Note: a default cached cover size of 128 pixels is big enough, + // 256 pixels are already noticeably slow with 180 covers in the song-screen + // displayed at once. In additon the covers.db will be too big. + TextureSize := GetArrayIndex(ITextureSize, IniFile.ReadString('Graphics', 'TextureSize', '128')); // SingWindow SingWindow := GetArrayIndex(ISingWindow, IniFile.ReadString('Graphics', 'SingWindow', 'Big')); |