Remove last constructor and remove GLOBAL SUB with it

This commit is contained in:
Jaby Blubb
2023-10-03 13:16:46 +02:00
parent 2c4583c8d7
commit 993adc3f26
11 changed files with 86 additions and 89 deletions

View File

@@ -53,7 +53,7 @@ namespace JabyEngine {
Vertex value;
static constexpr Termination create() {
return {.value = {static_cast<short>(0x5000), static_cast<short>(0x5000)}};
return {.value = Vertex::create(static_cast<short>(0x5000), static_cast<short>(0x5000))};
}
};