mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix non-SQLite build (fixes #1254)
This commit is contained in:
parent
7bc50b90cd
commit
759a1d2749
|
@ -75,9 +75,11 @@ void GBAApp::cleanup() {
|
||||||
finishJob(m_workerJobs.firstKey());
|
finishJob(m_workerJobs.firstKey());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef USE_SQLITE3
|
||||||
if (m_db) {
|
if (m_db) {
|
||||||
NoIntroDBDestroy(m_db);
|
NoIntroDBDestroy(m_db);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
bool GBAApp::event(QEvent* event) {
|
bool GBAApp::event(QEvent* event) {
|
||||||
|
|
Loading…
Reference in New Issue