Bugfix for login window

Content and general development discussion, including quest scripts and server code. TMW Classic is a project comprising the Legacy tmwAthena server & the designated improved engine server based on evolHercules.


Forum rules

This forum houses many years of development, tracing back to some of the earliest posts that exist on the board.

Its current use is for the continued development of the server and game it has always served: TMW Classic.

Post Reply
ville-v
Peon
Peon
Posts: 18
Joined: 02 Sep 2008, 11:54

Bugfix for login window

Post by ville-v »

I doubt this is right place to post this, but I did not find any better place.

If you set resolution higher, login window wallpaper stays still in the topleftmost corner and does not stretch. Login wallpaper is drawn in main.cpp, line 763:

Code: Select all

graphics->drawImage(login_wallpaper, 0, 0);
I attemped to stretch it, but I could not find such function in the client. This does center it, so the login window looks better:

Code: Select all

graphics->drawImage(login_wallpaper, graphics->getWidth() / 2 - 400, graphics->getHeight() / 2 - 300);
Quiche_on_a_leash
Novice
Novice
Posts: 221
Joined: 20 Oct 2006, 16:44

Re: Bugfix for login window

Post by Quiche_on_a_leash »

This has already been resolved in the 0.0.27 release.
"The image is now centered and a gray is now drawn behind it..."
ville-v
Peon
Peon
Posts: 18
Joined: 02 Sep 2008, 11:54

Re: Bugfix for login window

Post by ville-v »

Quiche_on_a_leash wrote:This has already been resolved in the 0.0.27 release.
"The image is now centered and a gray is now drawn behind it..."
Where can I find such version? I downloaded both trunk and branches/0.0 from svn and the aforementioned line was present in both. Are the newest sources not in svn?
User avatar
Crush
TMW Adviser
TMW Adviser
Posts: 8046
Joined: 25 Aug 2005, 16:08
Location: Germany

Re: Bugfix for login window

Post by Crush »

We do not use SVN anymore. We switched to Git a while ago. You can find information about how to access our git repositories here: http://wiki.themanaworld.org/index.php/Git_Repository
  • former Manasource Programmer
  • former TMW Pixel artist
  • NOT a game master

Please do not send me any inquiries regarding player accounts on TMW.


You might have heard a certain rumor about me. This rumor is completely false. You might also have heard the other rumor about me. This rumor is 100% accurate.
User avatar
Rotonen
TMW Adviser
TMW Adviser
Posts: 3154
Joined: 08 Sep 2004, 19:48
Location: Bern, Switzerland

Re: Bugfix for login window

Post by Rotonen »

http://sourceforge.net/project/showfile ... _id=106790

Also if you want to keep up to date on our releases, subscribe to the email notifications.

If you want to keep up to date on development, there are nice atom feeds for our repositories on Gitorious.
This message used to be meaningful.
Post Reply