diff options
author | Ellen Poe <ellenhp@google.com> | 2021-09-09 18:54:18 -0700 |
---|---|---|
committer | Ellen Poe <ellenhp@google.com> | 2021-09-09 19:39:04 -0700 |
commit | f5d9c7b487166562a833fc86363d78468d711070 (patch) | |
tree | 3893f6fa0efdf3d657726074a8a1486a6f890742 /core | |
parent | 0d5e13cd805a1aa69c5f395483051d3501bcfcd3 (diff) |
Replace stb_vorbis with libogg+libvorbis
Diffstat (limited to 'core')
-rw-r--r-- | core/templates/vector.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/vector.h b/core/templates/vector.h index 033345d04c..2600604eb7 100644 --- a/core/templates/vector.h +++ b/core/templates/vector.h @@ -92,7 +92,7 @@ public: void append_array(Vector<T> p_other); - bool has(const T &p_val) { + bool has(const T &p_val) const { return find(p_val, 0) != -1; } |