diff --git a/include/core/window.hpp b/include/core/window.hpp index 75c37382..a63d88c2 100644 --- a/include/core/window.hpp +++ b/include/core/window.hpp @@ -8,7 +8,7 @@ namespace wowee { namespace core { struct WindowConfig { - std::string title = "Wowser Native"; + std::string title = "Wowee Native"; int width = 1920; int height = 1080; bool fullscreen = false; diff --git a/src/core/application.cpp b/src/core/application.cpp index e2800f57..05b25db5 100644 --- a/src/core/application.cpp +++ b/src/core/application.cpp @@ -47,7 +47,7 @@ Application::~Application() { } bool Application::initialize() { - LOG_INFO("Initializing Wowser Native Client"); + LOG_INFO("Initializing Wowee Native Client"); // Create window WindowConfig windowConfig; diff --git a/src/main.cpp b/src/main.cpp index e5d86106..9471928f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -5,7 +5,7 @@ int main(int argc, char* argv[]) { try { wowee::core::Logger::getInstance().setLogLevel(wowee::core::LogLevel::DEBUG); - LOG_INFO("=== Wowser Native Client ==="); + LOG_INFO("=== Wowee Native Client ==="); LOG_INFO("Starting application..."); wowee::core::Application app;