Fixed crash when idling with the snow effect enabled.
Added Android target to libretro port [rtretiakov]
Various nall library improvements.
This commit is contained in:
byuu
2019-09-13 22:15:11 +09:00
parent c6d90d3ff1
commit 1e626e75ef
14 changed files with 1105 additions and 3890 deletions

View File

@@ -69,6 +69,10 @@ auto string_view::operator=(string_view&& source) -> type& {
return *this;
};
string_view::operator bool() const {
return _size > 0;
}
string_view::operator const char*() const {
return _data;
}