From 6cd686a17e434429a8735c13446d2e81ff9c5a02 Mon Sep 17 00:00:00 2001 From: Karutoh Date: Sun, 6 Oct 2024 01:14:14 -0700 Subject: [PATCH] Updated readme. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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.