2
0
forked from Ivasoft/DSView

Merge pull request #252 from redchenjs/master

fix compilation error on ARM64 and other platforms
This commit is contained in:
DreamSourceLab
2019-10-29 22:26:09 +08:00
committed by GitHub

View File

@@ -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 />")