Skip to content

Commit b5b5c61

Browse files
committed
fix compilation error on ARM platform. close #135
1 parent b31f432 commit b5b5c61

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

DSView/pv/dialogs/about.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ About::About(QWidget *parent) :
4444
QString arch = "x64";
4545
#elif defined(__i386) || defined(_M_IX86)
4646
QString arch = "x86";
47+
#elif defined(__arm__) || defined(_M_ARM)
48+
QString arch = "arm";
4749
#endif
4850

4951
QString version = tr("<font size=24>DSView %1 (%2)</font><br />")

0 commit comments

Comments
 (0)