mirror of
https://github.com/DreamSourceLab/DSView.git
synced 2025-01-13 13:32:53 +08:00
fix compilation error on ARM64 and other platforms
This commit is contained in:
parent
74236adf8f
commit
7fa49f67af
@ -46,6 +46,10 @@ About::About(QWidget *parent) :
|
||||
QString arch = "x86";
|
||||
#elif defined(__arm__) || defined(_M_ARM)
|
||||
QString arch = "arm";
|
||||
#elif defined(__aarch64__)
|
||||
QString arch = "arm64";
|
||||
#else
|
||||
QString arch = "other";
|
||||
#endif
|
||||
|
||||
QString version = tr("<font size=24>DSView %1 (%2)</font><br />")
|
||||
|
Loading…
x
Reference in New Issue
Block a user