diff options
Diffstat (limited to 'core/path_remap.cpp')
-rw-r--r-- | core/path_remap.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/path_remap.cpp b/core/path_remap.cpp index 980e8f76e7..fd5b38fa79 100644 --- a/core/path_remap.cpp +++ b/core/path_remap.cpp @@ -168,9 +168,9 @@ void PathRemap::load_remaps() { for(List<Variant>::Element *E=rk.front();E;E=E->next()) { String source = E->get(); - StringArray sa = remaps[E->get()]; + PoolStringArray sa = remaps[E->get()]; int sas = sa.size(); - StringArray::Read r = sa.read(); + PoolStringArray::Read r = sa.read(); for(int i=0;i<sas;i++) { |