vulkan.h: Bug 13616 Clarification of types of sample counts
diff --git a/layers/draw_state.cpp b/layers/draw_state.cpp
index 783ef91..0c0265b 100644
--- a/layers/draw_state.cpp
+++ b/layers/draw_state.cpp
@@ -631,7 +631,7 @@
     PIPELINE_NODE* pPipe = pipelineMap[pipeline];
     if (VK_STRUCTURE_TYPE_PIPELINE_MS_STATE_CREATE_INFO == pPipe->msStateCI.sType) {
         if (pPipe->msStateCI.multisampleEnable)
-            return pPipe->msStateCI.samples;
+            return pPipe->msStateCI.rasterSamples;
     }
     return 1;
 }