Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/msys2.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Windows applications compiled with msys2 need some system dlls to run. If you ar

make copy_dlls

from the msys2 terminal and it'll copy the necesary dlls to the project bin folder. Now you can copy that bin folder to any computer and it will run right away without having to install msys2.
from the msys2 terminal and it'll copy the necessary dlls to the project bin folder. Now you can copy that bin folder to any computer and it will run right away without having to install msys2.

This is still experimental so if you find any problem please [report it on github](https://github.com/openframeworks/openFrameworks/new?title=Problem%20with%20msys2%20dlls)

Expand Down
2 changes: 1 addition & 1 deletion libs/openFrameworks/app/ofAppGLFWWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void ofAppGLFWWindow::setup(const ofGLFWWindowSettings & _settings){
if(windowP){
ofLogError() << "window already setup, probably you are mixing old and new style setup";
ofLogError() << "call only ofCreateWindow(settings) or ofSetupOpenGL(...)";
ofLogError() << "calling window->setup() after ofCreateWindow() is not necesary and won't do anything";
ofLogError() << "calling window->setup() after ofCreateWindow() is not necessary and won't do anything";
return;
}
settings = _settings;
Expand Down