2
0
forked from Ivasoft/DSView

fix compilation error on ARM platform. close #135

This commit is contained in:
redchenjs
2018-06-06 15:08:02 +08:00
parent b31f432a47
commit b5b5c61e2d

View File

@@ -44,6 +44,8 @@ About::About(QWidget *parent) :
QString arch = "x64";
#elif defined(__i386) || defined(_M_IX86)
QString arch = "x86";
#elif defined(__arm__) || defined(_M_ARM)
QString arch = "arm";
#endif
QString version = tr("<font size=24>DSView %1 (%2)</font><br />")