Skip to content
Snippets Groups Projects
Commit 6e467633 authored by Jonas Johan Solsvik's avatar Jonas Johan Solsvik
Browse files

comments

parent 309b0fd4
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ auto Parser::nextLine() -> std::string_view ...@@ -30,7 +30,7 @@ auto Parser::nextLine() -> std::string_view
} }
endofLine = strview.find('\n', startofLine); endofLine = strview.find('\n', startofLine);
if (size_t(endofLine) == std::string::npos) { if (std::size_t(endofLine) == std::string::npos) {
LOG_ERROR("End of line character (\n) not found. Are you missing an end of line character at the end of file?"); LOG_ERROR("End of line character (\n) not found. Are you missing an end of line character at the end of file?");
} }
......
...@@ -56,7 +56,7 @@ int main(int argc, char** args) ...@@ -56,7 +56,7 @@ int main(int argc, char** args)
Init::OpenGL(C::ClearColor); Init::OpenGL(C::ClearColor);
Watcher::pollEvents(); Watcher::pollEvents();
// Load resource subsystem // Load asset subsystems
TextureSystem::load(); TextureSystem::load();
ShaderSystem::createUniformBuffers(); ShaderSystem::createUniformBuffers();
ShaderSystem::load(); ShaderSystem::load();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment