Skip to content

Commit

Permalink
Fix some minor typos
Browse files Browse the repository at this point in the history
  • Loading branch information
2shady4u committed May 30, 2022
1 parent 1165879 commit 8ae3ef6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ After exhausting these options, please open an issue that describes the error in
### 2. Your plugin fails to load on my Windows machine!
***NOTE**: This cause of this issue has been addressed in later releases of this plugin (3.1+) by swapping out the windows library with the MinGW cross-compiled version. This QA entry is preserved as a historical reference.*
***NOTE**: The cause of this issue has been addressed in later releases of this plugin (3.1+) by swapping out the windows library with the MinGW cross-compiled version. This QA entry is preserved as a historical reference.*
Basically if your Windows machine device doesn't have the required VC++ redistributables installed, the dynamic library will fail to load and throw an error of the following sort:
Expand Down
2 changes: 1 addition & 1 deletion src/gdsqlite.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ bool SQLite::query_with_bindings(String p_query, Array param_bindings)

if (!param_bindings.empty())
{
GODOT_LOG(1, "GDSQLite Warning: Provided number of bindings exceeded the required number in statement! (" + String(std::to_string(param_bindings.size()).c_str()) + " unused parameters)")
GODOT_LOG(1, "GDSQLite Warning: Provided number of bindings exceeded the required number in statement! (" + String(std::to_string(param_bindings.size()).c_str()) + " unused parameter(s))")
}

return true;
Expand Down

0 comments on commit 8ae3ef6

Please sign in to comment.