rpcsx/rpcs3/rpcs3qt/fatal_error_dialog.h
Eladash cd6ef2958b Add information about unnamed/main threads in logs and fatal dialog
* 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>
2021-03-11 22:55:06 +03:00

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);
};