소스 검색

Morph: Update worker allocation comment

Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
Ameer J 6 년 전
부모
커밋
f49ffdd648
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/shader/async_shaders.cpp

+ 1 - 1
src/video_core/shader/async_shaders.cpp

@@ -29,7 +29,7 @@ void AsyncShaders::AllocateWorkers() {
     // Don't use more than MAX_THREADS
     const auto num_workers = std::min(max_worker_count, MAX_THREADS);
 
-    // If we're already have workers queued or don't want to queue workers, ignore
+    // If we already have workers queued, ignore
     if (num_workers == worker_threads.size()) {
         return;
     }