More minor fixes

spdlog now builds as a library with nasm workaround
This commit is contained in:
Shay
2020-10-08 22:39:12 -06:00
parent 4ddacae897
commit 0f916ed81e
6 changed files with 12 additions and 14 deletions
+2 -1
View File
@@ -16,7 +16,8 @@ int main(int argc, char** argv) {
spdlog::flush_on(spdlog::level::info);
// run the runtime in a loop so we can reset the game and have it restart cleanly
spdlog::info("gk {}.{} OK!", versions::GOAL_VERSION_MAJOR, versions::GOAL_VERSION_MINOR);
spdlog::info("OpenGOAL Runtime {}.{}", versions::GOAL_VERSION_MAJOR,
versions::GOAL_VERSION_MINOR);
if (exec_runtime(argc, argv) == 2) {
return 0;