Fix errors and warnings in templates
This commit is contained in:
parent
5480bf8a93
commit
2af0ba66f1
@ -20,22 +20,22 @@
|
|||||||
// Here is a small helper for you! Have a look.
|
// Here is a small helper for you! Have a look.
|
||||||
#include "ResourcePath.hpp"
|
#include "ResourcePath.hpp"
|
||||||
|
|
||||||
int main(int, char const**)
|
int main()
|
||||||
{
|
{
|
||||||
// Create the main window
|
// Create the main window
|
||||||
sf::RenderWindow window(sf::VideoMode({800, 600}), "SFML window");
|
sf::RenderWindow window(sf::VideoMode({800, 600}), "SFML window");
|
||||||
|
|
||||||
// Set the Icon
|
// Set the Icon
|
||||||
sf::Image icon;
|
sf::Image icon;
|
||||||
if (!icon.loadFromFile(resourcePath() + "icon.png"))
|
if (!icon.loadFromFile(resourcePath() / "icon.png"))
|
||||||
{
|
{
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
window.setIcon(icon.getSize().x, icon.getSize().y, icon.getPixelsPtr());
|
window.setIcon(icon);
|
||||||
|
|
||||||
// Load a sprite to display
|
// Load a sprite to display
|
||||||
sf::Texture texture;
|
sf::Texture texture;
|
||||||
if (!texture.loadFromFile(resourcePath() + "background.jpg"))
|
if (!texture.loadFromFile(resourcePath() / "background.jpg"))
|
||||||
{
|
{
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
@ -43,7 +43,7 @@ int main(int, char const**)
|
|||||||
|
|
||||||
// Create a graphical text to display
|
// Create a graphical text to display
|
||||||
sf::Font font;
|
sf::Font font;
|
||||||
if (!font.loadFromFile(resourcePath() + "tuffy.ttf"))
|
if (!font.loadFromFile(resourcePath() / "tuffy.ttf"))
|
||||||
{
|
{
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
@ -52,7 +52,7 @@ int main(int, char const**)
|
|||||||
|
|
||||||
// Load a music to play
|
// Load a music to play
|
||||||
sf::Music music;
|
sf::Music music;
|
||||||
if (!music.openFromFile(resourcePath() + "doodle_pop.ogg"))
|
if (!music.openFromFile(resourcePath() / "doodle_pop.ogg"))
|
||||||
{
|
{
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
#include <SFML/Audio.hpp>
|
#include <SFML/Audio.hpp>
|
||||||
#include <SFML/Graphics.hpp>
|
#include <SFML/Graphics.hpp>
|
||||||
|
|
||||||
int main(int argc, char const** argv)
|
int main()
|
||||||
{
|
{
|
||||||
// Create the main window
|
// Create the main window
|
||||||
sf::RenderWindow window(sf::VideoMode({800, 600}), "SFML window");
|
sf::RenderWindow window(sf::VideoMode({800, 600}), "SFML window");
|
||||||
@ -29,7 +29,7 @@ int main(int argc, char const** argv)
|
|||||||
{
|
{
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
window.setIcon(icon.getSize().x, icon.getSize().y, icon.getPixelsPtr());
|
window.setIcon(icon);
|
||||||
|
|
||||||
// Load a sprite to display
|
// Load a sprite to display
|
||||||
sf::Texture texture;
|
sf::Texture texture;
|
||||||
|
Loading…
Reference in New Issue
Block a user