Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - hamzse

Pages: [1]
1
General / ld.exe cannot find extern dependencies
« on: February 18, 2017, 10:33:59 pm »
I have recently downgraded from windows 10 back to 8.1, and ran into some trouble while compiling a project i was working on windows 10.

Build Errors:
(click to show/hide)

Build Log:
(click to show/hide)

I compile SFML with CMake statically. I tried the library i used on windows 10, but got the same errors.

I get the same errors with the sample program in the tutorial too.

2
Feature requests / Adding sf::Window::getTitle()
« on: November 10, 2016, 04:18:07 pm »
Hello!

To say it in a short way, this is how i start my game:


int main(){
    MainProgram game(new sf::RenderWindow(sf::VideoMode(1280, 720), "Title"));

    game.insertNewState<StateMainMenu>();
    game.programLoop();
}
 

And it looks cool (to me) until i want to go fullscreen. The only way i can go fullscreen is by closing the  current window, then making a new one. The problem is i cannot get the title from the window, to pass it to the new one.


Originally i was about posting this here: http://en.sfml-dev.org/forums/index.php?topic=2276.0 , then the site warned me to make a new post instead of writing into a really old one.

Pages: [1]