mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
[[unlikely]] ASSERT
and other ASSERT usage changes
This commit is contained in:
@ -3,7 +3,6 @@
|
||||
|
||||
#include "DolphinQt/CheatSearchWidget.h"
|
||||
|
||||
#include <cassert>
|
||||
#include <functional>
|
||||
#include <optional>
|
||||
#include <string>
|
||||
|
@ -401,7 +401,7 @@ static QString GetFormatDescription(Memcard::SavefileFormat format)
|
||||
case Memcard::SavefileFormat::SAV:
|
||||
return QObject::tr("Datel MaxDrive/Pro files");
|
||||
default:
|
||||
ASSERT(0);
|
||||
ASSERT(false);
|
||||
return QObject::tr("Native GCI File");
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user