diff options
author | Alec Thomas <alec@swapoff.org> | 2014-12-08 09:53:44 +1100 |
---|---|---|
committer | Alec Thomas <alec@swapoff.org> | 2014-12-08 09:53:44 +1100 |
commit | 8a5dc45b955199bc9b0f38ab0f7bad0a8810e196 (patch) | |
tree | 6191085c8353bb02debc1b9d0869e5e62f059fa8 | |
parent | 3aad0575bf8e98034ff758bdf8f7d6d69f90d83d (diff) | |
parent | f9d17a8c30bb06b6377f0ea39ce0fc413a3df76f (diff) |
Merge pull request #69 from jpleau/examples
example: typo in compilation command, replace arial with a free font
-rw-r--r-- | examples/LiberationSans-Regular.ttf | bin | 0 -> 139764 bytes | |||
-rw-r--r-- | examples/arial.ttf | bin | 773236 -> 0 bytes | |||
-rw-r--r-- | examples/example.cc | 6 |
3 files changed, 3 insertions, 3 deletions
diff --git a/examples/LiberationSans-Regular.ttf b/examples/LiberationSans-Regular.ttf Binary files differnew file mode 100644 index 0000000..254ace4 --- /dev/null +++ b/examples/LiberationSans-Regular.ttf diff --git a/examples/arial.ttf b/examples/arial.ttf Binary files differdeleted file mode 100644 index ab68fb1..0000000 --- a/examples/arial.ttf +++ /dev/null diff --git a/examples/example.cc b/examples/example.cc index d6385b3..6f036a1 100644 --- a/examples/example.cc +++ b/examples/example.cc @@ -13,7 +13,7 @@ * * Compile with: * - * c++ -O3 -std=c++11 -Wall -lsfml-system -lsfml-window -lsfml-graphics -lentityx readme.cc -o readme + * c++ -O3 -std=c++11 -Wall -lsfml-system -lsfml-window -lsfml-graphics -lentityx example.cc -o example */ #include <cmath> #include <unordered_set> @@ -359,8 +359,8 @@ int main() { sf::RenderWindow window(sf::VideoMode::getDesktopMode(), "EntityX Example", sf::Style::Fullscreen); sf::Font font; - if (!font.loadFromFile("arial.ttf")) { - cerr << "error: failed to load arial.ttf" << endl; + if (!font.loadFromFile("LiberationSans-Regular.ttf")) { + cerr << "error: failed to load LiberationSans-Regular.ttf" << endl; return 1; } |