diff options
author | Lioncash <mathew1800@gmail.com> | 2016-04-29 17:16:52 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-05-09 05:03:32 +0200 |
commit | 769f4a7018e170448f7f1c307f2bcfa26f59ecba (patch) | |
tree | 2cad100535e7d7619e3011e6185e7ba940d449e9 | |
parent | vertex_loader: Use std::array instead of raw C arrays (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/video_core/vertex_loader.h | 2 |
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 |