diff --git a/README.md b/README.md index 930cf1a..c38f0a9 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,8 @@ Wayland Window System. Wayland support is currently not fully supported yet, use - [vcpkg](https://learn.microsoft.com/en-us/vcpkg/get_started/get-started?pivots=shell-cmd) ### Building +`vcpkg install` + `cmake -A x64 -DCMAKE_BUILD_TYPE=Release /path/to/source` ### Compiling @@ -101,7 +103,7 @@ int main() if (!response.IsNum()) { ehs::Console::Clear(); // Clear the console's buffer. - return Main(appName, appVerId, appVer); // Repeat process if given response is not a number. + return main(); // Repeat process if given response is not a number. } ehs::UInt_8 age = response.ToDecimal(); // Converts the string number into a number based primitive.