From ebf9a784a9f7f4148a669dbb39e7cd50df779a14 Mon Sep 17 00:00:00 2001 From: James Rowe Date: Thu, 11 Jan 2018 19:21:20 -0700 Subject: Massive removal of unused modules --- src/citra_qt/util/util.cpp | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/citra_qt/util/util.cpp (limited to 'src/citra_qt/util/util.cpp') diff --git a/src/citra_qt/util/util.cpp b/src/citra_qt/util/util.cpp deleted file mode 100644 index 02be92bbd..000000000 --- a/src/citra_qt/util/util.cpp +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2015 Citra Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. - -#include -#include -#include "citra_qt/util/util.h" - -QFont GetMonospaceFont() { - QFont font("monospace"); - // Automatic fallback to a monospace font on on platforms without a font called "monospace" - font.setStyleHint(QFont::Monospace); - font.setFixedPitch(true); - return font; -} - -QString ReadableByteSize(qulonglong size) { - static const std::array units = {"B", "KiB", "MiB", "GiB", "TiB", "PiB"}; - if (size == 0) - return "0"; - int digit_groups = std::min(static_cast(std::log10(size) / std::log10(1024)), - static_cast(units.size())); - return QString("%L1 %2") - .arg(size / std::pow(1024, digit_groups), 0, 'f', 1) - .arg(units[digit_groups]); -} -- cgit v1.2.3