mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-04 12:33:59 +01:00
* If thread is unnamed, keep log name empty for main thread, otherwise print thread id. In fatal dialog, main thread can be handled differently (with special remark that it's main thread). * Always print thread id in fatal dialog, regardless of thread type. Co-authored-by: Nekotekina <nekotekina@gmail.com>
14 lines
176 B
C++
14 lines
176 B
C++
#pragma once
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <string_view>
|
|
|
|
class fatal_error_dialog : public QMessageBox
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
fatal_error_dialog(std::string_view text);
|
|
};
|