diff options
Diffstat (limited to 'src/video_core/gpu_debugger.h')
-rw-r--r-- | src/video_core/gpu_debugger.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/gpu_debugger.h b/src/video_core/gpu_debugger.h index 03641d93b0..48ac269e36 100644 --- a/src/video_core/gpu_debugger.h +++ b/src/video_core/gpu_debugger.h @@ -58,8 +58,8 @@ public: if (observers.empty()) return; - gx_command_history.push_back(GSP_GPU::Command()); - GSP_GPU::Command& cmd = gx_command_history[gx_command_history.size()-1]; + gx_command_history.emplace_back(); + GSP_GPU::Command& cmd = gx_command_history.back(); memcpy(&cmd, command_data, sizeof(GSP_GPU::Command)); |