mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-07 16:49:58 +00:00
Fix types
This commit is contained in:
parent
5f96f992df
commit
2187788f8e
1 changed files with 2 additions and 2 deletions
|
@ -626,9 +626,9 @@ namespace gui
|
||||||
usz byte_unit = 0;
|
usz byte_unit = 0;
|
||||||
usz divisor = 1;
|
usz divisor = 1;
|
||||||
#if defined(__APPLE__)
|
#if defined(__APPLE__)
|
||||||
usz multiplier = 1000;
|
constexpr multiplier = 1000;
|
||||||
#else
|
#else
|
||||||
usz multiplier = 1024;
|
constexpr multiplier = 1024;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const QString s_units[]{"B", "KB", "MB", "GB", "TB", "PB"};
|
static const QString s_units[]{"B", "KB", "MB", "GB", "TB", "PB"};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue