[nostalgia/core/userland] Cleanup

This commit is contained in:
2021-03-17 21:45:34 -05:00
parent be3caf1818
commit dc1ead2af4
3 changed files with 11 additions and 7 deletions
+5 -1
View File
@@ -21,7 +21,11 @@ struct Texture {
GLuint width = 0;
GLuint height = 0;
constexpr operator GLuint() const noexcept {
constexpr operator GLuint&() noexcept {
return texId;
}
constexpr operator const GLuint&() const noexcept {
return texId;
}