From 5ce2f715ce730179a0c7b111384328f5ae7b9cdf Mon Sep 17 00:00:00 2001 From: kmather73 Date: Sun, 16 Dec 2018 01:15:20 -0800 Subject: [PATCH] Nit: Add Break to default case. --- src/video_core/gpu.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index a32ab429d8..66817d877a 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -301,6 +301,7 @@ void GPU::CallMethod(const MethodCall& method_call) { } default: LOG_ERROR(HW_GPU, "Special puller engine method {:X} not implemented", static_cast(method)); + break; } return; }