summaryrefslogtreecommitdiffstats
path: root/src/video_core/vertex_loader.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-04-29 17:16:52 +0200
committerLioncash <mathew1800@gmail.com>2016-05-09 05:03:32 +0200
commit769f4a7018e170448f7f1c307f2bcfa26f59ecba (patch)
tree2cad100535e7d7619e3011e6185e7ba940d449e9 /src/video_core/vertex_loader.h
parentvertex_loader: Use std::array instead of raw C arrays (diff)
downloadyuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.tar
yuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.tar.gz
yuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.tar.bz2
yuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.tar.lz
yuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.tar.xz
yuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.tar.zst
yuzu-769f4a7018e170448f7f1c307f2bcfa26f59ecba.zip
Diffstat (limited to 'src/video_core/vertex_loader.h')
-rw-r--r--src/video_core/vertex_loader.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vertex_loader.h b/src/video_core/vertex_loader.h
index 3b511945a..4ed8cd3fd 100644
--- a/src/video_core/vertex_loader.h
+++ b/src/video_core/vertex_loader.h
@@ -28,7 +28,7 @@ private:
std::array<Regs::VertexAttributeFormat, 16> vertex_attribute_formats;
std::array<u32, 16> vertex_attribute_elements{};
std::array<bool, 16> vertex_attribute_is_default;
- int num_total_attributes;
+ int num_total_attributes = 0;
};
} // namespace Pica