Unverified Commit 55bcb5f7 authored by DreamSourceLab's avatar DreamSourceLab Committed by GitHub
Browse files

Merge pull request #136 from redchenjs/master

fix compilation error on ARM platform. close #135
parents b31f432a b5b5c61e
......@@ -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 />")
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment