summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/video_core.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/video_core.cpp b/src/video_core/video_core.cpp
index e227b6795..f2e17f9f9 100644
--- a/src/video_core/video_core.cpp
+++ b/src/video_core/video_core.cpp
@@ -38,12 +38,13 @@ void Init(EmuWindow* emu_window) {
38 38
39 g_current_frame = 0; 39 g_current_frame = 0;
40 40
41 NOTICE_LOG(VIDEO, "initialized ok"); 41 NOTICE_LOG(VIDEO, "initialized OK");
42} 42}
43 43
44/// Shutdown the video core 44/// Shutdown the video core
45void Shutdown() { 45void Shutdown() {
46 delete g_renderer; 46 delete g_renderer;
47 NOTICE_LOG(VIDEO, "shutdown OK");
47} 48}
48 49
49} // namespace 50} // namespace