diff --git a/data/basic_highres.skn b/data/basic_hdpi.skn similarity index 99% rename from data/basic_highres.skn rename to data/basic_hdpi.skn index dec98356cc..591d568b50 100644 --- a/data/basic_highres.skn +++ b/data/basic_hdpi.skn @@ -1,6 +1,6 @@ - + diff --git a/data/basic.skn b/data/basic_ldpi.skn similarity index 99% rename from data/basic.skn rename to data/basic_ldpi.skn index 8664aafd01..b792547e9f 100644 --- a/data/basic.skn +++ b/data/basic_ldpi.skn @@ -1,6 +1,6 @@ - + diff --git a/data/basic_mdpi.skn b/data/basic_mdpi.skn new file mode 100644 index 0000000000..a99b48fceb --- /dev/null +++ b/data/basic_mdpi.skn @@ -0,0 +1,413 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/symbols_24.png b/data/symbols_24.png deleted file mode 100644 index 72eda15641..0000000000 Binary files a/data/symbols_24.png and /dev/null differ diff --git a/data/symbols_48.png b/data/symbols_48.png deleted file mode 100644 index 154a23f54c..0000000000 Binary files a/data/symbols_48.png and /dev/null differ diff --git a/data/symbols_hdpi.png b/data/symbols_hdpi.png new file mode 100644 index 0000000000..770875b8ff Binary files /dev/null and b/data/symbols_hdpi.png differ diff --git a/data/symbols_ldpi.png b/data/symbols_ldpi.png new file mode 100644 index 0000000000..52b6f004db Binary files /dev/null and b/data/symbols_ldpi.png differ diff --git a/data/symbols_mdpi.png b/data/symbols_mdpi.png new file mode 100644 index 0000000000..13a7ab06d1 Binary files /dev/null and b/data/symbols_mdpi.png differ diff --git a/platform/platform_android.cpp b/platform/platform_android.cpp index 6b815306fb..1221b36edf 100644 --- a/platform/platform_android.cpp +++ b/platform/platform_android.cpp @@ -94,12 +94,12 @@ string Platform::DeviceName() const double Platform::VisualScale() const { - return 2; + return 1.5; } string Platform::SkinName() const { - return "basic_highres.skn"; + return "basic_hdpi.skn"; } void Platform::GetFontNames(FilesList & res) const diff --git a/platform/platform_ios.mm b/platform/platform_ios.mm index 73ba4316a4..3c9112a253 100644 --- a/platform/platform_ios.mm +++ b/platform/platform_ios.mm @@ -53,7 +53,7 @@ Platform::Platform() // Hardcoding screen resolution depending on the device we are running. m_impl->m_visualScale = 1.0; - m_impl->m_skinName = "basic.skn"; + m_impl->m_skinName = "basic_ldpi.skn"; m_impl->m_videoMemoryLimit = 8 * 1024 * 1024; // Calculating resolution @@ -75,7 +75,7 @@ Platform::Platform() if ([UIScreen mainScreen].currentMode.size.width == 640) { m_impl->m_visualScale = 2.0; - m_impl->m_skinName = "basic_highres.skn"; + m_impl->m_skinName = "basic_hdpi.skn"; } } diff --git a/platform/platform_qt.cpp b/platform/platform_qt.cpp index e2de8d080d..81ce96c5bd 100644 --- a/platform/platform_qt.cpp +++ b/platform/platform_qt.cpp @@ -45,7 +45,7 @@ double Platform::VisualScale() const string Platform::SkinName() const { - return "basic.skn"; + return "basic_ldpi.skn"; } void Platform::GetFontNames(FilesList & res) const