Procházet zdrojové kódy

Merge pull request #3687 from lioncash/constness

surface_base: Make IsInside() a const member function
Rodrigo Locatti před 6 roky
rodič
revize
60e8de7c95
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      src/video_core/texture_cache/surface_base.h

+ 2 - 2
src/video_core/texture_cache/surface_base.h

@@ -72,9 +72,9 @@ public:
         return (cpu_addr < end) && (cpu_addr_end > start);
         return (cpu_addr < end) && (cpu_addr_end > start);
     }
     }
 
 
-    bool IsInside(const GPUVAddr other_start, const GPUVAddr other_end) {
+    bool IsInside(const GPUVAddr other_start, const GPUVAddr other_end) const {
         const GPUVAddr gpu_addr_end = gpu_addr + guest_memory_size;
         const GPUVAddr gpu_addr_end = gpu_addr + guest_memory_size;
-        return (gpu_addr <= other_start && other_end <= gpu_addr_end);
+        return gpu_addr <= other_start && other_end <= gpu_addr_end;
     }
     }
 
 
     // Use only when recycling a surface
     // Use only when recycling a surface