Skip to content

Commit

Permalink
2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Imrglop committed Oct 1, 2024
1 parent 21bf0fc commit cab1075
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/client/Latite.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class Latite final : public Listener {
Latite() { shouldListen = true; };
~Latite() = default;

static constexpr std::string_view version = "v2.2.0";
static constexpr std::string_view version = "v2.3.0";
HINSTANCE dllInst = NULL;
std::string gameVersion;

Expand Down
2 changes: 1 addition & 1 deletion src/client/script/lib/libraries/Filesystem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ JsValueRef Filesystem::readdirSync(JsValueRef callee, bool isConstructor, JsValu
std::vector<std::wstring> entries;

for (auto& entry : fs::directory_iterator(path)) {
entries.push_back(entry.path().filename()));
entries.push_back(entry.path().filename());
}

JsValueRef array;
Expand Down

0 comments on commit cab1075

Please sign in to comment.