summaryrefslogtreecommitdiffstats
path: root/src/common/assert.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* common: Move settings to common from core.bunnei2021-04-151-1/+1
| | | | - Removes a dependency on core and input_common from common.
* core: settings: Add setting for debug assertions and disable by default.bunnei2021-04-151-2/+5
| | | | | | - This is a developer-only setting and no longer needs to be enabled by default. - Also adds "use_auto_stub" setting to SDL frontend while we are here. - Supersedes #1340.
* common: Move assert failure handling into a cpp file.Markus Wick2021-04-041-0/+11
Advantage: Altering the handler does not need a full recompilation. Disadvantage: noreturn is droped, so the caller is a bit slower. We quite often run yuzu with a YOLO assertion handler. In fact, only very few games run at all with asserts. This patch allows developers to patch the handler without recompiling everything. The overhead of the missing "noreturn" attribute shoul be negletable.