mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-03 20:24:14 +02:00
Merge pull request #14729 from JoshuaVandaele/fix-clang-libstdcpp
PerformanceMetrics: Fix compiling using clang&libstdc++
This commit is contained in:
@@ -51,8 +51,10 @@ public:
|
||||
private:
|
||||
struct FrameBufferSize
|
||||
{
|
||||
u32 width = 0;
|
||||
u32 height = 0;
|
||||
FrameBufferSize() : width(0), height(0) {}
|
||||
FrameBufferSize(u32 w, u32 h) : width(w), height(h) {}
|
||||
u32 width;
|
||||
u32 height;
|
||||
};
|
||||
|
||||
PerformanceTracker m_fps_counter{"render_times.txt"};
|
||||
|
||||
Reference in New Issue
Block a user