Index: head/emulators/mgba/files/patch-git_e3137356 =================================================================== --- head/emulators/mgba/files/patch-git_e3137356 (nonexistent) +++ head/emulators/mgba/files/patch-git_e3137356 (revision 470024) @@ -0,0 +1,21 @@ +From e31373560535203d826687044290a4994706c2dd Mon Sep 17 00:00:00 2001 +From: ilovezfs +Date: Mon, 11 Dec 2017 00:39:32 -0800 +Subject: [PATCH] Qt: Fix build with Qt 5.10 + +Fixes "MemoryModel.cpp:102:15: error: no viable overloaded '='" +--- + src/platform/qt/MemoryModel.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +--- src/platform/qt/MemoryModel.cpp ++++ src/platform/qt/MemoryModel.cpp +@@ -99,7 +99,7 @@ void MemoryModel::setRegion(uint32_t base, uint32_t size, const QString& name, i + m_top = 0; + m_base = base; + m_size = size; +- m_regionName = name; ++ m_regionName = QStaticText(name); + m_regionName.prepare(QTransform(), m_font); + m_currentBank = segment; + verticalScrollBar()->setRange(0, (size >> 4) + 1 - viewport()->size().height() / m_cellHeight); Property changes on: head/emulators/mgba/files/patch-git_e3137356 ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property