mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-29 22:20:48 +00:00
Fix types 2
This commit is contained in:
parent
9ffa923da6
commit
b16d267f9d
@ -626,10 +626,10 @@ namespace gui
|
|||||||
usz byte_unit = 0;
|
usz byte_unit = 0;
|
||||||
usz divisor = 1;
|
usz divisor = 1;
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
constexpr multiplier = 1000;
|
constexpr usz multiplier = 1000;
|
||||||
static const QString s_units[]{"B", "kB", "MB", "GB", "TB", "PB"};
|
static const QString s_units[]{"B", "kB", "MB", "GB", "TB", "PB"};
|
||||||
#else
|
#else
|
||||||
constexpr multiplier = 1024;
|
constexpr usz multiplier = 1024;
|
||||||
static const QString s_units[]{"B", "KiB", "MiB", "GiB", "TiB", "PiB"};
|
static const QString s_units[]{"B", "KiB", "MiB", "GiB", "TiB", "PiB"};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user