Просмотр исходного кода

video_core/gpu: Remove use of the global system accessor

We can just make use of the reference member variable instead of
accessing the global system instance.
Lioncash 6 лет назад
Родитель
Сommit
b25b94400e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/video_core/gpu.cpp

+ 1 - 1
src/video_core/gpu.cpp

@@ -326,7 +326,7 @@ void GPU::ProcessSemaphoreTriggerMethod() {
         block.sequence = regs.semaphore_sequence;
         // TODO(Kmather73): Generate a real GPU timestamp and write it here instead of
         // CoreTiming
-        block.timestamp = Core::System::GetInstance().CoreTiming().GetTicks();
+        block.timestamp = system.CoreTiming().GetTicks();
         memory_manager->WriteBlock(regs.semaphore_address.SemaphoreAddress(), &block,
                                    sizeof(block));
     } else {