Skip to content

Commit

Permalink
fixing issues between compilers and os targets
Browse files Browse the repository at this point in the history
  • Loading branch information
objeck committed Feb 17, 2024
1 parent 4ec86ec commit 9b6de49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/vm/vm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ wchar_t** ProcessCommandLine(int &argc, const char* argv[])

if(is_response_file) {
// skip '@'
std::ifstream file_in(wide_args[2] + 1);
std::ifstream file_in(UnicodeToBytes(wide_args[2] + 1));
if(file_in.is_open()) {
constexpr int ARG_OFFSET = 2;

Expand Down

0 comments on commit 9b6de49

Please sign in to comment.