소스 검색

vk_texture_cache: Fix typo in commentary

Co-Authored-By: MysticExile <30736337+MysticExile@users.noreply.github.com>
Rodrigo Locatti 6 년 전
부모
커밋
82e1285c1e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/video_core/renderer_vulkan/vk_texture_cache.cpp

+ 1 - 1
src/video_core/renderer_vulkan/vk_texture_cache.cpp

@@ -229,7 +229,7 @@ void CachedSurface::DownloadTexture(std::vector<u8>& staging_buffer) {
     }
     scheduler.Finish();
 
-    // TODO(Rodrigo): Use an intern buffer for staging buffers and avoid this unnecesary memcpy.
+    // TODO(Rodrigo): Use an intern buffer for staging buffers and avoid this unnecessary memcpy.
     std::memcpy(staging_buffer.data(), buffer.commit->Map(host_memory_size), host_memory_size);
 }