LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Games
User Name
Password
Linux - Games This forum is for all discussion relating to gaming in Linux.

Notices


Reply
  Search this Thread
Old 04-18-2012, 03:39 PM   #31
indietrash
LQ Newbie
 
Registered: Aug 2008
Posts: 24

Rep: Reputation: 1

just reporting that the game runs fine on my system (Linux lolwabbit 2.6.39-gentoo-r2 #9 SMP Wed Dec 14 18:31:40 CET 2011 x86_64 Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz GenuineIntel GNU/Linux).

the code looked fairly nice as well. globals are indeed very bad, but you know that, judging by your comment. you should probably divide the game up into more files and use autotools for building it as well. furthermore, I would recommend putting it up on github, which makes collaboration easier. maybe someone will help you. :-)
 
Old 04-19-2012, 12:28 AM   #32
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by indietrash View Post
just reporting that the game runs fine on my system (Linux lolwabbit 2.6.39-gentoo-r2 #9 SMP Wed Dec 14 18:31:40 CET 2011 x86_64 Intel(R) Core(TM)2 Duo CPU T9400 @ 2.53GHz GenuineIntel GNU/Linux).

the code looked fairly nice as well. globals are indeed very bad, but you know that, judging by your comment. you should probably divide the game up into more files and use autotools for building it as well. furthermore, I would recommend putting it up on github, which makes collaboration easier. maybe someone will help you. :-)
You have almost the exact same processor as my dev machine: Intel(R) Core(TM)2 Duo CPU P8700 @ 2.53GHz
Thank you.
I would split the source up into multiple files, but I kind of like the fact that everything is contained in one file. That's why I'm even hard coding the sounds into the source, to make sure everything is contained in one file, and compiled into one executable. In any other scenario I would most certainly do that, and when it comes time to make the sequel, it will be done that way from the start. I definitely do not want to use autotools however, IMHO autotools is a huge mess, and I avoid it whenever possible. At this point, compiling is so simple that such a build system shouldn't be needed, however, I realize that many people are familiar with the GNU autotools build procedure, so to accommodate, I have a configure script myself which mimics the GNU autotools syntax and functionality, and can even be used to cross compile. Although I admit that I have been lax in updating it, it still lacks support for enabling sloppy timing, I'll do some work on it today.
As for moving to github, its probably a good idea. Personally, I am not all that familiar with git, for most of my other projects I have been using subversion repositories hosted at Assembla, since Assembla was the only host I could find that wouldn't constrain my license options to copy-left licenses.
So, if it would truly be helpful, and github does not force me to use copyleft licenses, then I will gladly move source to github.
 
Old 04-19-2012, 12:36 AM   #33
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by manu-tm View Post
I got a crash (bsod). For which version of windows is it compiled?

Maybe you should make a portable version including all required dll's to avoid that. Anyways, if you're cross-compiling, it's not that easy...
Oh dear.... Sorry about that, my sincere apologies. I didn't even realize that a userspace program was capable of doing that in Windows.... I'm very sorry, I hope no damage was done.
I'll see if I can figure out whats going so wrong with my builds instead of just trying different permutations (which is an antipattern I'm afraid)
 
Old 04-19-2012, 06:12 AM   #34
indietrash
LQ Newbie
 
Registered: Aug 2008
Posts: 24

Rep: Reputation: 1
Quote:
Originally Posted by prushik View Post
I definitely do not want to use autotools however, IMHO autotools is a huge mess, and I avoid it whenever possible.
I like GNU AutoTools. it has a lot of nice features. admittedly, it is big and messy. you can consider the alternative, which is ever growing in popularity, CMake - https://en.wikipedia.org/wiki/Cmake.

Quote:
Originally Posted by prushik View Post
if it would truly be helpful, and github does not force me to use copyleft licenses, then I will gladly move source to github.
the only constraint that github has, at least to my knowledge, is that if you do not want the source code available, you need to pay for a closed repository. copyleft isn't necessary.

github provides you with some nice features, such as pull requests. this means that a user can fork your project, do some changes, and send you a pull request for their commit. you can review their commit, and pull it if you find it agreeable. it's just all-round pleasant to work with.

git in general is amazing. with svn et al., I'm generally very afraid to bork things on larger projects, and find myself wrestling with the system whenever I need to do something remotely complex. git on the other hand is actually fun to work with. you just hack and play. it's all very pleasant, just like the github.
 
Old 04-19-2012, 06:36 PM   #35
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by manu-tm View Post
I got a crash (bsod). For which version of windows is it compiled?

Maybe you should make a portable version including all required dll's to avoid that. Anyways, if you're cross-compiling, it's not that easy...
I believe I have discovered what has caused your BSOD. Neither timing system is functional under Windows, it seems that usleep compiles in minGW, but does nothing, so the game runs at full speed taking up 100% of your CPU. When I get home tonight I will take some time to rewrite the timing system using GLUT alternatives to the POSIX specific code.

Edit: Eh. well, turns out GLUT doesn't have a way to do exactly what I want, its timer callback is basically a busyloop without adding any sleep functions. So, with no platform independent options, I decided to use the preprocessor to use Sleep() instead of usleep if you don't compile on Unix. Now it compiles and runs at the right speed on Windows (well.... it runs on Wine).

Last edited by prushik; 04-20-2012 at 03:43 AM.
 
Old 04-19-2012, 06:44 PM   #36
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by indietrash View Post
I like GNU AutoTools. it has a lot of nice features. admittedly, it is big and messy. you can consider the alternative, which is ever growing in popularity, CMake - https://en.wikipedia.org/wiki/Cmake.
Cmake at least looks nicer when it is compiling. I like build systems which use colors. However, really the only thing that a build system needs to do is determine if you are cross compiling, and whether or not GLUT, openAL, and ALUT are available, which are all fairly simple things to do.


Quote:
Originally Posted by indietrash View Post
the only constraint that github has, at least to my knowledge, is that if you do not want the source code available, you need to pay for a closed repository. copyleft isn't necessary.

github provides you with some nice features, such as pull requests. this means that a user can fork your project, do some changes, and send you a pull request for their commit. you can review their commit, and pull it if you find it agreeable. it's just all-round pleasant to work with.

git in general is amazing. with svn et al., I'm generally very afraid to bork things on larger projects, and find myself wrestling with the system whenever I need to do something remotely complex. git on the other hand is actually fun to work with. you just hack and play. it's all very pleasant, just like the github.
Alright, I'll look into possibly setting up a repository later today.

alright, I set up a git repo on github. I think I have done everything correctly, take a look and let me know. Thanks!
https://github.com/prushik/untitledone

Last edited by prushik; 04-20-2012 at 07:58 AM.
 
Old 04-20-2012, 02:04 PM   #37
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 343

Rep: Reputation: 43
BTW, I've tested your game on a linux box with: Ubuntu natty, Intel Atom 1.6GHz processor, 1GB RAM. Does the game need a faster proccessor or more RAM?

Last edited by manu-tm; 04-20-2012 at 02:33 PM.
 
Old 04-20-2012, 10:23 PM   #38
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by manu-tm View Post
BTW, I've tested your game on a linux box with: Ubuntu natty, Intel Atom 1.6GHz processor, 1GB RAM. Does the game need a faster proccessor or more RAM?
It really shouldn't, although, it was developed originally on a 3GHz P4 with hyperthreading; I don't think I have tested with anything weaker than that. I lent my good friend my netbook while his laptop was out of commission, and he never returned it, and that was before I came to Korea, so I don't think I'm getting it back, so I can't test it on a netbook myself, sorry.
However, it looks to me like Untitled one uses about 25.2 MB of RAM, which is a hell of a lot more than I expected, but still not much, each of my chromium tabs uses more than that. As for processor usage, on my machine, its only using about 1% or less at all times, it really isn't resource intensive.
Do other OpenGL applications run slowly on your machine as well? Maybe your OpenGL implementation is to blame. Also, have you tried compiling with audio disabled?
 
Old 04-21-2012, 08:32 AM   #39
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 343

Rep: Reputation: 43
Hmmm, I'll give it a try on another machine and see what happens.
 
Old 04-21-2012, 11:47 PM   #40
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by manu-tm View Post
Hmmm, I'll give it a try on another machine and see what happens.
Actually, it would probably be best if I added some instrumentation to the the code.
If you don't mind wasting some of your time, I will write a special build that will still run slowly, but will generate some output which you can send back to me and will tell me exactly which parts of the code are slowing it down for you. Do you mind?
 
Old 04-22-2012, 03:41 PM   #41
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 343

Rep: Reputation: 43
Quote:
Originally Posted by prushik View Post
Actually, it would probably be best if I added some instrumentation to the the code.
If you don't mind wasting some of your time, I will write a special build that will still run slowly, but will generate some output which you can send back to me and will tell me exactly which parts of the code are slowing it down for you. Do you mind?
Sure, no prob...
 
Old 04-23-2012, 03:25 AM   #42
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by manu-tm View Post
Sure, no prob...
Ok, if you clone the git-hub repo, it now has some instrumentation added. Clone the repo, and add -DINSTRUMENT as an argument when you compile.
The resulting executable will print out a lot of stuff, its all just timing information, you can redirect the output to a file or you can just copy and paste some of it here. The last number on each line is the length of time that your CPU is idle per step, for me it was always 33ms or 34ms, which is pretty much as good as you can ask for. The game shouldn't start to actually slow down unless the last number reaches 0 (or if you have sloppy timing enabled), in which case the numbers before it should always add up to 34 or more, showing which part of the code uses wastes the most time.
https://github.com/prushik/untitledone
 
Old 04-23-2012, 07:54 AM   #43
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 343

Rep: Reputation: 43
Here is what I got:

Code:
~/Desktop/prushik-untitledone-c91d028$ ./UntitledOne
45 : 2 : 0 : 0 : 0 : 34
357 : 0 : 0 : 0 : 36 : 0
394 : 7 : 0 : 0 : 6 : 27
446 : 1 : 0 : 0 : 7 : 27
483 : 1 : 0 : 0 : 10 : 23
517 : 1 : 0 : 0 : 8 : 25
551 : 2 : 0 : 0 : 20 : 14
587 : 11 : 0 : 0 : 8 : 26
632 : 1 : 0 : 0 : 6 : 27
666 : 1 : 0 : 0 : 7 : 26
700 : 1 : 0 : 0 : 8 : 26
735 : 1 : 0 : 0 : 14 : 20
770 : 1 : 0 : 0 : 7 : 26
804 : 6 : 0 : 0 : 15 : 19
844 : 9 : 0 : 0 : 6 : 27
886 : 1 : 0 : 0 : 27 : 7
921 : 0 : 0 : 0 : 8 : 26
955 : 1 : 0 : 0 : 7 : 26
989 : 1 : 0 : 0 : 8 : 25
1024 : 0 : 0 : 0 : 13 : 21
1058 : 7 : 0 : 0 : 6 : 27
1098 : 4 : 0 : 0 : 6 : 28
1136 : 0 : 0 : 1 : 6 : 27
1170 : 1 : 0 : 0 : 29 : 4
1204 : 1 : 0 : 0 : 9 : 24
1238 : 1 : 0 : 0 : 15 : 18
1273 : 10 : 0 : 0 : 11 : 23
1317 : 1 : 0 : 0 : 10 : 23
1351 : 1 : 0 : 0 : 5 : 28
1386 : 0 : 0 : 0 : 7 : 27
1420 : 0 : 0 : 0 : 7 : 27
1454 : 0 : 0 : 0 : 6 : 28
1488 : 13 : 0 : 0 : 16 : 18
1535 : 0 : 1 : 0 : 7 : 26
1569 : 1 : 0 : 0 : 12 : 22
1604 : 0 : 0 : 0 : 7 : 27
1638 : 1 : 0 : 0 : 7 : 26
1672 : 1 : 0 : 0 : 13 : 21
1707 : 7 : 0 : 0 : 14 : 1019
2759 : 0 : 0 : 0 : 5 : 29
2793 : 3 : 0 : 0 : 11 : 23
2830 : 10 : 0 : 0 : 16 : 17
2874 : 0 : 0 : 0 : 11 : 23
2908 : 0 : 0 : 0 : 23 : 11
2942 : 8 : 0 : 0 : 5 : 28
2983 : 1 : 0 : 0 : 14 : 20
3018 : 6 : 0 : 0 : 7 : 27
3058 : 0 : 0 : 0 : 9 : 25
3092 : 2 : 0 : 0 : 13 : 20
3127 : 1 : 0 : 0 : 6 : 27
3161 : 1 : 0 : 0 : 7 : 27
3196 : 1 : 0 : 0 : 14 : 20
3231 : 9 : 0 : 0 : 8 : 26
3274 : 1 : 0 : 0 : 14 : 19
3308 : 1 : 1 : 0 : 18 : 15
3343 : 1 : 0 : 0 : 8 : 25
3377 : 1 : 0 : 0 : 9 : 24
3412 : 0 : 0 : 0 : 14 : 20
3446 : 9 : 0 : 0 : 7 : 27
3489 : 1 : 0 : 0 : 10 : 23
3523 : 1 : 0 : 0 : 10 : 23
3558 : 0 : 0 : 0 : 5 : 29
3592 : 0 : 0 : 0 : 9 : 25
3626 : 1 : 0 : 0 : 6 : 27
3660 : 1 : 0 : 0 : 10 : 23
3695 : 0 : 0 : 0 : 15 : 19
3729 : 1 : 0 : 0 : 24 : 9
3763 : 4 : 0 : 0 : 8 : 26
3801 : 1 : 0 : 0 : 12 : 21
3835 : 1 : 0 : 0 : 7 : 28
3871 : 1 : 0 : 0 : 27 : 6
3905 : 1 : 0 : 0 : 18 : 15
3940 : 0 : 0 : 0 : 8 : 26
3974 : 0 : 0 : 0 : 9 : 25
4008 : 1 : 0 : 0 : 38 : 0
4047 : 5 : 0 : 0 : 6 : 28
4086 : 0 : 0 : 0 : 6 : 28
4120 : 1 : 0 : 0 : 12 : 21
4154 : 1 : 0 : 0 : 5 : 28
4188 : 5 : 0 : 0 : 7 : 27
4227 : 11 : 0 : 0 : 5 : 28
4271 : 1 : 0 : 0 : 5 : 28
4305 : 1 : 0 : 0 : 8 : 25
4339 : 1 : 0 : 0 : 16 : 18
4374 : 1 : 0 : 0 : 7 : 26
4408 : 1 : 0 : 0 : 8 : 25
4443 : 0 : 0 : 0 : 14 : 20
4477 : 9 : 0 : 0 : 10 : 23
4519 : 3 : 0 : 0 : 7 : 27
4556 : 0 : 1 : 0 : 8 : 25
4590 : 1 : 0 : 0 : 5 : 28
4624 : 1 : 0 : 0 : 21 : 13
4659 : 0 : 0 : 0 : 5 : 29
4693 : 4 : 0 : 0 : 7 : 27
4731 : 5 : 0 : 0 : 6 : 28
4770 : 1 : 0 : 0 : 6 : 28
4805 : 1 : 0 : 0 : 9 : 24
4839 : 1 : 0 : 0 : 10 : 23
4874 : 0 : 0 : 0 : 7 : 27
4908 : 0 : 0 : 0 : 6 : 28
4942 : 1 : 0 : 0 : 5 : 28
4976 : 6 : 0 : 0 : 13 : 21
5016 : 3 : 0 : 0 : 7 : 26
5053 : 0 : 0 : 0 : 8 : 26
5087 : 0 : 0 : 0 : 31 : 3
5121 : 4 : 0 : 0 : 14 : 19
5158 : 1 : 0 : 0 : 5 : 28
5192 : 1 : 0 : 0 : 7 : 27
5227 : 1 : 0 : 0 : 16 : 20
5270 : 0 : 0 : 0 : 5 : 29
5304 : 1 : 0 : 0 : 6 : 27
5338 : 1 : 0 : 0 : 12 : 21
5372 : 1 : 0 : 0 : 6 : 27
5409 : 1 : 0 : 0 : 6 : 27
5443 : 7 : 0 : 0 : 14 : 20
5484 : 1 : 0 : 0 : 8 : 25
5519 : 0 : 0 : 0 : 6 : 28
5553 : 1 : 0 : 0 : 17 : 16
5588 : 0 : 0 : 0 : 8 : 26
5625 : 1 : 0 : 0 : 6 : 27
5659 : 8 : 0 : 0 : 17 : 17
5701 : 1 : 0 : 0 : 6 : 27
5736 : 0 : 0 : 0 : 5 : 29
5770 : 3 : 0 : 1 : 13 : 20
5807 : 1 : 0 : 0 : 8 : 25
5841 : 1 : 0 : 0 : 6 : 27
5876 : 0 : 0 : 0 : 23 : 11
5910 : 12 : 0 : 0 : 5 : 28
5956 : 0 : 0 : 0 : 21 : 13
5991 : 0 : 0 : 0 : 23 : 10
6025 : 5 : 0 : 0 : 5 : 28
6063 : 1 : 0 : 0 : 5 : 28
6098 : 7 : 0 : 0 : 16 : 18
6139 : 1 : 0 : 0 : 7 : 27
6174 : 1 : 0 : 0 : 10 : 23
6210 : 0 : 0 : 0 : 9 : 25
6244 : 1 : 0 : 0 : 6 : 27
6279 : 5 : 0 : 0 : 19 : 15
6318 : 1 : 0 : 0 : 13 : 20
6353 : 1 : 0 : 0 : 5 : 28
6388 : 0 : 0 : 0 : 17 : 17
6422 : 1 : 0 : 0 : 6 : 27
6456 : 1 : 0 : 0 : 8 : 25
6492 : 1 : 0 : 0 : 17 : 17
6527 : 8 : 0 : 0 : 6 : 27
6568 : 1 : 0 : 0 : 5 : 28
6603 : 0 : 0 : 0 : 8 : 26
6637 : 1 : 0 : 0 : 13 : 20
6671 : 2 : 0 : 0 : 16 : 17
6707 : 1 : 0 : 0 : 5 : 28
6741 : 5 : 0 : 0 : 13 : 20
6782 : 1 : 0 : 0 : 7 : 26
6816 : 1 : 0 : 0 : 25 : 9
6851 : 0 : 1 : 0 : 10 : 23
6886 : 0 : 0 : 0 : 8 : 26
6920 : 0 : 0 : 0 : 9 : 25
6959 : 0 : 0 : 0 : 15 : 19
6993 : 1 : 0 : 0 : 6 : 28
7028 : 0 : 0 : 0 : 10 : 24
7064 : 1 : 0 : 0 : 9 : 24
7098 : 1 : 0 : 0 : 9 : 24
7134 : 0 : 0 : 0 : 9 : 26
7169 : 14 : 0 : 0 : 7 : 26
7217 : 1 : 0 : 0 : 10 : 24
7252 : 0 : 0 : 0 : 7 : 27
7286 : 0 : 0 : 0 : 9 : 25
7322 : 0 : 0 : 1 : 18 : 15
7356 : 12 : 0 : 0 : 6 : 27
7403 : 1 : 0 : 0 : 10 : 23
7438 : 0 : 0 : 1 : 6 : 27
7472 : 1 : 0 : 0 : 5 : 28
7506 : 1 : 0 : 0 : 7 : 26
7540 : 9 : 0 : 0 : 7 : 27
7583 : 1 : 0 : 0 : 5 : 28
7617 : 1 : 0 : 0 : 12 : 21
7651 : 2 : 0 : 0 : 9 : 24
7686 : 2 : 0 : 0 : 10 : 23
7722 : 1 : 0 : 0 : 6 : 27
7756 : 1 : 0 : 0 : 14 : 20
7791 : 4 : 0 : 0 : 14 : 20
7829 : 1 : 0 : 0 : 8 : 25
7863 : 1 : 0 : 0 : 22 : 11
7898 : 0 : 0 : 0 : 9 : 25
7932 : 0 : 0 : 0 : 9 : 25
7966 : 1 : 0 : 0 : 11 : 22
8000 : 1 : 0 : 0 : 9 : 24
8035 : 1 : 0 : 0 : 15 : 18
8069 : 6 : 0 : 0 : 24 : 10
8109 : 3 : 0 : 0 : 6 : 27
8145 : 1 : 0 : 0 : 15 : 18
8179 : 1 : 0 : 0 : 7 : 26
8214 : 1 : 0 : 0 : 12 : 21
8248 : 1 : 0 : 0 : 6 : 28
8283 : 1 : 0 : 0 : 17 : 17
8318 : 3 : 0 : 0 : 8 : 25
8354 : 1 : 0 : 0 : 5 : 28
8388 : 1 : 0 : 0 : 7 : 27
8423 : 0 : 0 : 0 : 13 : 21
8457 : 1 : 0 : 0 : 7 : 26
8491 : 1 : 0 : 0 : 10 : 24
8526 : 0 : 0 : 0 : 7 : 27
8560 : 2 : 0 : 0 : 14 : 19
8612 : 1 : 0 : 0 : 27 : 6
8646 : 1 : 0 : 0 : 0 : 33
8682 : 0 : 0 : 0 : 0 : 34
8716 : 0 : 0 : 0 : *0* : *121* : 121 : 912
9750 : 0 : 0 : 0 : *0* : *128* : 129 : 0
9879 : 7 : 0 : 0 : *0* : *124* : 125 : 0
10011 : 7 : 0 : 0 : *0* : *123* : 124 : 0
10142 : 11 : 0 : 0 : *0* : *127* : 129 : 0
10282 : 4 : 0 : 0 : *0* : *121* : 121 : 0
10407 : 14 : 0 : 0 : *0* : *126* : 126 : 0
10547 : 7 : 0 : 0 : *0* : *121* : 121 : 0
10675 : 14 : 0 : 0 : *0* : *124* : 124 : 909
11727 : 0 : 0 : 0 : *1* : *124* : 125 : 0
11854 : 7 : 0 : 0 : *0* : *128* : 129 : 0
11991 : 3 : 0 : 0 : *0* : *121* : 122 : 0
12116 : 13 : 0 : 0 : *0* : *119* : 119 : 0
12248 : 14 : 0 : 0 : *0* : *127* : 127 : 0
12390 : 6 : 0 : 0 : *0* : *130* : 130 : 0
12526 : 4 : 0 : 0 : *0* : *123* : 123 : 0
12653 : 11 : 0 : 0 : *0* : *127* : 127 : 906
13727 : 9 : 0 : 0 : *0* : *118* : 118 : 0
13854 : 18 : 0 : 0 : *0* : *127* : 128 : 0
14000 : 4 : 0 : 0 : *0* : *122* : 122 : 0
14126 : 13 : 0 : 0 : *0* : *122* : 123 : 0
14262 : 15 : 0 : 0 : *0* : *128* : 128 : 0
14405 : 18 : 0 : 0 : *0* : *124* : 126 : 0
14549 : 8 : 0 : 0 : *0* : *127* : 128 : 0
14685 : 9 : 0 : 0 : *0* : *128* : 129 : 905
15763 : 0 : 0 : 0 : *0* : *117* : 117 : 0
15883 : 15 : 0 : 0 : *0* : *127* : 128 : 0
16026 : 8 : 0 : 0 : *0* : *124* : 125 : 0
16159 : 7 : 0 : 0 : *0* : *148* : 148 : 0
16314 : 3 : 0 : 0 : *0* : *130* : 130 : 0
16447 : 3 : 0 : 0 : *0* : *128* : 128 : 0
16578 : 8 : 0 : 0 : *0* : *145* : 145 : 888
17619 : 2 : 0 : 0 : *0* : *131* : 132 : 901
18658 : 22 : 0 : 0 : *0* : *323* : 324 : 709
19715 : 1 : 0 : 0 : *0* : *174* : 174 : 859
20798 : 0 : 0 : 0 : *0* : *168* : 168 : 0
20967 : 7 : 0 : 0 : *0* : *180* : 181 : 0
21155 : 3 : 0 : 0 : *0* : *173* : 173 : 0
21333 : 11 : 0 : 0 : *0* : *171* : 172 : 0
21521 : 8 : 0 : 0 : *0* : *182* : 183 : 0
21718 : 13 : 0 : 0 : *0* : *174* : 175 : 0
21912 : 1 : 0 : 0 : *0* : *182* : 182 : 0
22102 : 1 : 0 : 0 : *0* : *174* : 174 : 0
22283 : 1 : 0 : 0 : *0* : *174* : 175 : 0
22467 : 0 : 0 : 0 : *0* : *171* : 172 : 0
22645 : 4 : 0 : 0 : *0* : *171* : 172 : 861
23743 : 1 : 0 : 0 : *0* : *166* : 166 : 0
23915 : 11 : 0 : 0 : *0* : *178* : 178 : 1
24114 : 0 : 0 : 0 : *0* : *174* : 174 : 0
24294 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24474 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24654 : 6 : 0 : 0 : *0* : *173* : 173 : 861
25760 : 1 : 0 : 0 : *0* : *166* : 166 : 0
25935 : 0 : 0 : 0 : *0* : *182* : 182 : 0
26123 : 11 : 0 : 0 : *0* : *175* : 176 : 0
26316 : 2 : 0 : 0 : *0* : *172* : 172 : 0
26497 : 6 : 0 : 0 : *0* : *173* : 173 : 0
26683 : 4 : 0 : 0 : *0* : *183* : 183 : 850
27784 : 0 : 0 : 0 : *0* : *170* : 171 : 0
27964 : 0 : 0 : 0 : *0* : *183* : 183 : 0
28154 : 8 : 0 : 0 : *0* : *186* : 186 : 0
28358 : 4 : 0 : 0 : *0* : *174* : 174 : 0
28542 : 4 : 0 : 0 : *0* : *178* : 179 : 854
29610 : 9 : 0 : 0 : *0* : *166* : 166 : 867
30719 : 0 : 0 : 0 : *1* : *167* : 168 : 0
30894 : 0 : 0 : 0 : *0* : *169* : 170 : 0
31069 : 13 : 0 : 0 : *0* : *171* : 171 : 0
31261 : 0 : 0 : 0 : *0* : *177* : 178 : 0
31445 : 1 : 0 : 0 : *0* : *172* : 172 : 0
31625 : 4 : 0 : 0 : *0* : *176* : 176 : 857
32674 : 1 : 0 : 0 : *0* : *169* : 170 : 863
33734 : 8 : 0 : 0 : *0* : *171* : 172 : 0
33914 : 12 : 0 : 0 : *0* : *178* : 178 : 0
34110 : 1 : 0 : 0 : *0* : *171* : 172 : 0
34283 : 11 : 0 : 0 : *0* : *178* : 178 : 0
34472 : 6 : 0 : 0 : *0* : *178* : 178 : 0
34656 : 6 : 0 : 0 : *0* : *170* : 171 : 862
35695 : 1 : 0 : 0 : *0* : *177* : 179 : 855
36730 : 1 : 0 : 0 : *0* : *187* : 187 : 0
36919 : 6 : 0 : 0 : *0* : *172* : 172 : 0
37097 : 13 : 0 : 0 : *0* : *179* : 179 : 0
37289 : 5 : 0 : 0 : *0* : *185* : 186 : 0
37480 : 13 : 0 : 0 : *1* : *174* : 176 : 0
37669 : 9 : 0 : 0 : *0* : *179* : 180 : 853
38712 : 0 : 0 : 0 : *0* : *174* : 175 : 859
39746 : 1 : 0 : 0 : *0* : *176* : 177 : 0
39924 : 20 : 0 : 0 : *0* : *179* : 179 : 0
40123 : 17 : 0 : 0 : *0* : *167* : 168 : 0
40308 : 19 : 0 : 0 : *0* : *165* : 167 : 0
40494 : 15 : 0 : 0 : *0* : *179* : 179 : 0
40688 : 6 : 0 : 0 : *0* : *178* : 179 : 854
41727 : 1 : 0 : 0 : *1* : *174* : 175 : 0
41903 : 13 : 0 : 0 : *0* : *173* : 173 : 0
42089 : 13 : 0 : 0 : *0* : *176* : 177 : 0
42279 : 6 : 0 : 0 : *0* : *185* : 186 : 0
42471 : 15 : 0 : 0 : *0* : *179* : 180 : 0
42666 : 4 : 0 : 0 : *0* : *172* : 173 : 860
43703 : 1 : 0 : 0 : *0* : *174* : 175 : 858
44738 : 1 : 0 : 0 : *0* : *184* : 184 : 0
44923 : 8 : 0 : 0 : *0* : *179* : 180 : 0
45111 : 7 : 0 : 0 : *0* : *178* : 178 : 0
45296 : 6 : 0 : 0 : *0* : *174* : 174 : 0
45476 : 9 : 0 : 0 : *0* : *196* : 197 : 0
45682 : 4 : 0 : 0 : *0* : *190* : 190 : 843
46719 : 1 : 0 : 0 : *0* : *170* : 171 : 0
46891 : 21 : 0 : 0 : *0* : *168* : 168 : 0
47080 : 13 : 0 : 0 : *0* : *178* : 178 : 0
47271 : 6 : 0 : 0 : *0* : *173* : 173 : 0
47450 : 12 : 0 : 0 : *0* : *176* : 176 : 0
47639 : 7 : 0 : 0 : *0* : *172* : 172 : 861
48679 : 1 : 0 : 0 : *0* : *175* : 175 : 859
49714 : 1 : 0 : 0 : *0* : *175* : 175 : 858
50751 : 0 : 0 : 0 : *0* : *183* : 184 : 0
50935 : 13 : 0 : 0 : *0* : *173* : 173 : 0
51121 : 12 : 0 : 0 : *0* : *176* : 177 : 0
51310 : 7 : 0 : 0 : *0* : *172* : 173 : 0
51490 : 9 : 0 : 0 : *0* : *168* : 169 : 0
51668 : 15 : 0 : 0 : *0* : *170* : 171 : 863
52717 : 1 : 0 : 0 : *0* : *170* : 170 : 863
53754 : 1 : 0 : 0 : *0* : *182* : 182 : 0
53937 : 9 : 0 : 0 : *0* : *185* : 185 : 0
54131 : 15 : 0 : 0 : *0* : *181* : 181 : 0
54327 : 3 : 0 : 0 : *0* : *175* : 176 : 0
54506 : 11 : 0 : 0 : *1* : *168* : 169 : 0
54686 : 15 : 0 : 0 : *0* : *179* : 179 : 854
55734 : 1 : 0 : 0 : *0* : *170* : 170 : 0
55906 : 16 : 0 : 0 : 0 : 34
55957 : 0 : 0 : 0 : 10 : 23
55990 : 1 : 0 : 0 : 28 : 6
56025 : 0 : 0 : 0 : 8 : 26
56059 : 1 : 0 : 0 : 9 : 24
56093 : 1 : 0 : 0 : 7 : 26
56127 : 1 : 0 : 0 : 22 : 11
56161 : 2 : 0 : 0 : 21 : 12
56196 : 8 : 0 : 0 : 8 : 25
56237 : 1 : 0 : 0 : 6 : 27
56271 : 1 : 0 : 0 : 12 : 21
56306 : 3 : 0 : 0 : 11 : 23
56343 : 1 : 0 : 0 : 6 : 27
56377 : 1 : 0 : 0 : 8 : 25
56411 : 1 : 0 : 0 : 15 : 19
56446 : 7 : 0 : 0 : 11 : 22
56486 : 1 : 0 : 0 : 6 : 27
56520 : 1 : 0 : 0 : 7 : 26
56555 : 0 : 0 : 0 : 13 : 21
56589 : 0 : 0 : 0 : 7 : 27
56623 : 0 : 0 : 0 : 8 : 26
56657 : 8 : 0 : 0 : 18 : 16
56699 : 0 : 0 : 0 : 7 : 27
56733 : 0 : 0 : 0 : 27 : 7
56767 : 9 : 0 : 0 : 26 : 8
56810 : 3 : 0 : 0 : 8 : 26
56847 : 1 : 0 : 0 : 19 : 19
56886 : 7 : 0 : 0 : 7 : 27
56927 : 1 : 0 : 0 : 7 : 26
56961 : 1 : 0 : 0 : 8 : 25
56995 : 1 : 0 : 0 : 17 : 16
57029 : 1 : 0 : 0 : 8 : 26
57064 : 1 : 0 : 0 : 19 : 18
57102 : 6 : 0 : 1 : 7 : 26
57142 : 1 : 0 : 0 : 8 : 25
57176 : 1 : 0 : 0 : 15 : 19
57211 : 0 : 0 : 0 : 17 : 17
57246 : 1 : 0 : 0 : 5 : 28
57280 : 1 : 0 : 0 : 8 : 25
57314 : 2 : 0 : 0 : 14 : 19
57349 : 5 : 0 : 0 : 7 : 26
57389 : 0 : 0 : 0 : 6 : 27
57423 : 0 : 0 : 0 : 24 : 10
57457 : 7 : 0 : 0 : 19 : 14
57498 : 1 : 0 : 0 : 10 : 23
57532 : 1 : 0 : 0 : 6 : 27
57577 : 0 : 0 : 0 : 9 : 25
57611 : 0 : 0 : 0 : 9 : 25
57645 : 1 : 0 : 0 : 12 : 21
57679 : 1 : 0 : 0 : 11 : 22
57714 : 1 : 0 : 0 : 12 : 1022
58761 : 1 : 0 : 0 : 12 : 21
58795 : 1 : 0 : 0 : 16 : 17
58829 : 3 : 0 : 0 : 7 : 27
58866 : 0 : 0 : 0 : 21 : 13
58900 : 4 : 0 : 0 : 30 : 4
58938 : 0 : 0 : 0 : 11 : 24
58973 : 6 : 0 : 0 : 18 : 16
59013 : 0 : 1 : 0 : 13 : 20
59047 : 1 : 0 : 0 : 20 : 13
59081 : 1 : 0 : 0 : 10 : 23
59115 : 1 : 0 : 0 : 12 : 22
59150 : 0 : 0 : 0 : 7 : 27
59184 : 12 : 0 : 0 : 8 : 25
59230 : 0 : 0 : 0 : 24 : 10
59264 : 0 : 0 : 0 : 10 : 24
59298 : 1 : 0 : 0 : 14 : 19
59334 : 2 : 0 : 0 : 11 : 23
59370 : 1 : 0 : 0 : 5 : 28
59408 : 7 : 0 : 0 : 5 : 28
59448 : 2 : 0 : 0 : 22 : 11
59483 : 1 : 0 : 0 : 10 : 23
59518 : 0 : 0 : 0 : 12 : 22
59552 : 2 : 0 : 0 : 8 : 25
59587 : 6 : 0 : 0 : 9 : 24
59629 : 0 : 0 : 0 : 22 : 12
59663 : 0 : 0 : 0 : 26 : 8
59697 : 1 : 0 : 0 : 9 : 24
59732 : 1 : 0 : 0 : 20 : 13
59766 : 1 : 0 : 0 : 6 : 27
59801 : 1 : 0 : 0 : 17 : 16
59835 : 1 : 0 : 0 : 14 : 20
59880 : 0 : 0 : 0 : 15 : 19
59914 : 0 : 0 : 0 : 7 : 27
59948 : 1 : 0 : 0 : 22 : 11
59983 : 1 : 0 : 0 : 5 : 28
60017 : 2 : 0 : 0 : 13 : 21
60058 : 1 : 0 : 0 : 21 : 13
60093 : 1 : 0 : 0 : 7 : 27
60128 : 1 : 0 : 0 : 27 : 6
60164 : 1 : 0 : 0 : 12 : 22
60199 : 5 : 0 : 0 : 19 : 14
60238 : 1 : 0 : 0 : 11 : 23
60273 : 1 : 0 : 0 : 8 : 26
60323 : 0 : 0 : 0 : 15 : 18
60357 : 0 : 0 : 0 : 9 : 25
60393 : 1 : 0 : 0 : 13 : 20
60427 : 2 : 0 : 0 : 9 : 24
60467 : 2 : 0 : 0 : 16 : 17
60514 : 1 : 0 : 0 : 9 : 25
60549 : 0 : 0 : 0 : 7 : 27
60584 : 0 : 0 : 0 : 10 : 24
60618 : 0 : 0 : 0 : 8 : 26
60654 : 1 : 0 : 0 : 13 : 20
60689 : 0 : 0 : 0 : 16 : 18
60723 : 4 : 0 : 0 : 10 : 24
60762 : 0 : 0 : 0 : 27 : 7
60796 : 1 : 0 : 0 : 10 : 24
60849 : 1 : 0 : 0 : 20 : 14
60885 : 1 : 0 : 0 : 8 : 25
60919 : 1 : 0 : 0 : 17 : 17
60956 : 1 : 0 : 0 : 17 : 17
60991 : 1 : 0 : 0 : 7 : 27
61027 : 1 : 0 : 0 : 6 : 27
61061 : 1 : 0 : 0 : 10 : 23
61096 : 1 : 0 : 0 : 12 : 21
61130 : 1 : 0 : 0 : 12 : 22
61165 : 0 : 0 : 0 : 6 : 28
61203 : 1 : 0 : 0 : 21 : 13
61243 : 1 : 0 : 0 : 7 : 26
61278 : 0 : 0 : 0 : 37 : 0
61315 : 1 : 0 : 0 : 7 : 27
61350 : 1 : 0 : 0 : 9 : 24
61384 : 1 : 0 : 0 : 14 : 20
61419 : 6 : 0 : 0 : 6 : 27
61458 : 1 : 0 : 0 : 18 : 15
61492 : 4 : 0 : 0 : 8 : 25
61529 : 1 : 1 : 0 : 18 : 15
61564 : 1 : 0 : 0 : 9 : 24
61598 : 1 : 0 : 0 : 11 : 22
61632 : 9 : 0 : 0 : 16 : 18
61675 : 1 : 0 : 0 : 6 : 27
61709 : 1 : 0 : 0 : 19 : 1014
62746 : 1 : 0 : 0 : 10 : 23
62780 : 1 : 0 : 0 : 16 : 18
62815 : 4 : 0 : 0 : 7 : 26
62852 : 2 : 0 : 0 : 7 : 27
62888 : 0 : 0 : 0 : 10 : 24
62922 : 1 : 0 : 0 : 7 : 26
62956 : 1 : 0 : 0 : 8 : 26
62991 : 1 : 0 : 0 : 6 : 27
63025 : 1 : 0 : 0 : 14 : 20
63060 : 5 : 0 : 0 : 16 : 17
63098 : 1 : 0 : 0 : 6 : 28
63133 : 0 : 0 : 0 : 10 : 24
63167 : 1 : 0 : 0 : 6 : 27
63201 : 2 : 0 : 0 : 14 : 19
63237 : 0 : 0 : 0 : 11 : 23
63271 : 1 : 0 : 0 : 9 : 25
63306 : 9 : 0 : 0 : 24 : 9
63348 : 1 : 0 : 0 : 7 : 27
63383 : 0 : 0 : 0 : 6 : 28
63417 : 1 : 0 : 0 : 24 : 10
63452 : 1 : 0 : 0 : 6 : 27
63487 : 0 : 0 : 0 : 13 : 21
63529 : 0 : 0 : 0 : 6 : 28
63563 : 5 : 0 : 0 : 7 : 26
63601 : 1 : 0 : 0 : 13 : 20
63638 : 1 : 0 : 0 : 19 : 14
63673 : 1 : 0 : 0 : 11 : 22
63707 : 1 : 0 : 0 : 8 : 26
63742 : 5 : 0 : 0 : 24 : 10
63781 : 3 : 0 : 0 : 8 : 25
63817 : 1 : 0 : 0 : 23 : 10
63852 : 0 : 0 : 0 : 11 : 23
63886 : 1 : 0 : 0 : 21 : 12
63920 : 1 : 0 : 0 : 8 : 25
63954 : 2 : 0 : 0 : 10 : 27
63993 : 5 : 0 : 0 : 27 : 7
64032 : 2 : 0 : 0 : 6 : 27
64067 : 1 : 0 : 0 : 6 : 27
64102 : 0 : 0 : 0 : 23 : 11
64137 : 2 : 0 : 0 : 18 : 16
AL lib: ALc.c:1879: exit(): closing 1 Device
AL lib: ALc.c:1808: alcCloseDevice(): destroying 1 Context(s)
AL lib: ALc.c:1420: alcDestroyContext(): deleting 30 Source(s)
AL lib: ALc.c:1818: alcCloseDevice(): deleting 25 Buffer(s)
 
Old 04-23-2012, 11:48 PM   #44
prushik
Member
 
Registered: Mar 2009
Location: Pennsylvania
Distribution: gentoo
Posts: 372

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by manu-tm View Post
Here is what I got:

Code:
~/Desktop/prushik-untitledone-c91d028$ ./UntitledOne
45 : 2 : 0 : 0 : 0 : 34
357 : 0 : 0 : 0 : 36 : 0
394 : 7 : 0 : 0 : 6 : 27
446 : 1 : 0 : 0 : 7 : 27
483 : 1 : 0 : 0 : 10 : 23
517 : 1 : 0 : 0 : 8 : 25
551 : 2 : 0 : 0 : 20 : 14
587 : 11 : 0 : 0 : 8 : 26
632 : 1 : 0 : 0 : 6 : 27
666 : 1 : 0 : 0 : 7 : 26
700 : 1 : 0 : 0 : 8 : 26
735 : 1 : 0 : 0 : 14 : 20
770 : 1 : 0 : 0 : 7 : 26
804 : 6 : 0 : 0 : 15 : 19
844 : 9 : 0 : 0 : 6 : 27
886 : 1 : 0 : 0 : 27 : 7
921 : 0 : 0 : 0 : 8 : 26
955 : 1 : 0 : 0 : 7 : 26
989 : 1 : 0 : 0 : 8 : 25
1024 : 0 : 0 : 0 : 13 : 21
1058 : 7 : 0 : 0 : 6 : 27
1098 : 4 : 0 : 0 : 6 : 28
1136 : 0 : 0 : 1 : 6 : 27
1170 : 1 : 0 : 0 : 29 : 4
1204 : 1 : 0 : 0 : 9 : 24
1238 : 1 : 0 : 0 : 15 : 18
1273 : 10 : 0 : 0 : 11 : 23
1317 : 1 : 0 : 0 : 10 : 23
1351 : 1 : 0 : 0 : 5 : 28
1386 : 0 : 0 : 0 : 7 : 27
1420 : 0 : 0 : 0 : 7 : 27
1454 : 0 : 0 : 0 : 6 : 28
1488 : 13 : 0 : 0 : 16 : 18
1535 : 0 : 1 : 0 : 7 : 26
1569 : 1 : 0 : 0 : 12 : 22
1604 : 0 : 0 : 0 : 7 : 27
1638 : 1 : 0 : 0 : 7 : 26
1672 : 1 : 0 : 0 : 13 : 21
1707 : 7 : 0 : 0 : 14 : 1019
2759 : 0 : 0 : 0 : 5 : 29
2793 : 3 : 0 : 0 : 11 : 23
2830 : 10 : 0 : 0 : 16 : 17
2874 : 0 : 0 : 0 : 11 : 23
2908 : 0 : 0 : 0 : 23 : 11
2942 : 8 : 0 : 0 : 5 : 28
2983 : 1 : 0 : 0 : 14 : 20
3018 : 6 : 0 : 0 : 7 : 27
3058 : 0 : 0 : 0 : 9 : 25
3092 : 2 : 0 : 0 : 13 : 20
3127 : 1 : 0 : 0 : 6 : 27
3161 : 1 : 0 : 0 : 7 : 27
3196 : 1 : 0 : 0 : 14 : 20
3231 : 9 : 0 : 0 : 8 : 26
3274 : 1 : 0 : 0 : 14 : 19
3308 : 1 : 1 : 0 : 18 : 15
3343 : 1 : 0 : 0 : 8 : 25
3377 : 1 : 0 : 0 : 9 : 24
3412 : 0 : 0 : 0 : 14 : 20
3446 : 9 : 0 : 0 : 7 : 27
3489 : 1 : 0 : 0 : 10 : 23
3523 : 1 : 0 : 0 : 10 : 23
3558 : 0 : 0 : 0 : 5 : 29
3592 : 0 : 0 : 0 : 9 : 25
3626 : 1 : 0 : 0 : 6 : 27
3660 : 1 : 0 : 0 : 10 : 23
3695 : 0 : 0 : 0 : 15 : 19
3729 : 1 : 0 : 0 : 24 : 9
3763 : 4 : 0 : 0 : 8 : 26
3801 : 1 : 0 : 0 : 12 : 21
3835 : 1 : 0 : 0 : 7 : 28
3871 : 1 : 0 : 0 : 27 : 6
3905 : 1 : 0 : 0 : 18 : 15
3940 : 0 : 0 : 0 : 8 : 26
3974 : 0 : 0 : 0 : 9 : 25
4008 : 1 : 0 : 0 : 38 : 0
4047 : 5 : 0 : 0 : 6 : 28
4086 : 0 : 0 : 0 : 6 : 28
4120 : 1 : 0 : 0 : 12 : 21
4154 : 1 : 0 : 0 : 5 : 28
4188 : 5 : 0 : 0 : 7 : 27
4227 : 11 : 0 : 0 : 5 : 28
4271 : 1 : 0 : 0 : 5 : 28
4305 : 1 : 0 : 0 : 8 : 25
4339 : 1 : 0 : 0 : 16 : 18
4374 : 1 : 0 : 0 : 7 : 26
4408 : 1 : 0 : 0 : 8 : 25
4443 : 0 : 0 : 0 : 14 : 20
4477 : 9 : 0 : 0 : 10 : 23
4519 : 3 : 0 : 0 : 7 : 27
4556 : 0 : 1 : 0 : 8 : 25
4590 : 1 : 0 : 0 : 5 : 28
4624 : 1 : 0 : 0 : 21 : 13
4659 : 0 : 0 : 0 : 5 : 29
4693 : 4 : 0 : 0 : 7 : 27
4731 : 5 : 0 : 0 : 6 : 28
4770 : 1 : 0 : 0 : 6 : 28
4805 : 1 : 0 : 0 : 9 : 24
4839 : 1 : 0 : 0 : 10 : 23
4874 : 0 : 0 : 0 : 7 : 27
4908 : 0 : 0 : 0 : 6 : 28
4942 : 1 : 0 : 0 : 5 : 28
4976 : 6 : 0 : 0 : 13 : 21
5016 : 3 : 0 : 0 : 7 : 26
5053 : 0 : 0 : 0 : 8 : 26
5087 : 0 : 0 : 0 : 31 : 3
5121 : 4 : 0 : 0 : 14 : 19
5158 : 1 : 0 : 0 : 5 : 28
5192 : 1 : 0 : 0 : 7 : 27
5227 : 1 : 0 : 0 : 16 : 20
5270 : 0 : 0 : 0 : 5 : 29
5304 : 1 : 0 : 0 : 6 : 27
5338 : 1 : 0 : 0 : 12 : 21
5372 : 1 : 0 : 0 : 6 : 27
5409 : 1 : 0 : 0 : 6 : 27
5443 : 7 : 0 : 0 : 14 : 20
5484 : 1 : 0 : 0 : 8 : 25
5519 : 0 : 0 : 0 : 6 : 28
5553 : 1 : 0 : 0 : 17 : 16
5588 : 0 : 0 : 0 : 8 : 26
5625 : 1 : 0 : 0 : 6 : 27
5659 : 8 : 0 : 0 : 17 : 17
5701 : 1 : 0 : 0 : 6 : 27
5736 : 0 : 0 : 0 : 5 : 29
5770 : 3 : 0 : 1 : 13 : 20
5807 : 1 : 0 : 0 : 8 : 25
5841 : 1 : 0 : 0 : 6 : 27
5876 : 0 : 0 : 0 : 23 : 11
5910 : 12 : 0 : 0 : 5 : 28
5956 : 0 : 0 : 0 : 21 : 13
5991 : 0 : 0 : 0 : 23 : 10
6025 : 5 : 0 : 0 : 5 : 28
6063 : 1 : 0 : 0 : 5 : 28
6098 : 7 : 0 : 0 : 16 : 18
6139 : 1 : 0 : 0 : 7 : 27
6174 : 1 : 0 : 0 : 10 : 23
6210 : 0 : 0 : 0 : 9 : 25
6244 : 1 : 0 : 0 : 6 : 27
6279 : 5 : 0 : 0 : 19 : 15
6318 : 1 : 0 : 0 : 13 : 20
6353 : 1 : 0 : 0 : 5 : 28
6388 : 0 : 0 : 0 : 17 : 17
6422 : 1 : 0 : 0 : 6 : 27
6456 : 1 : 0 : 0 : 8 : 25
6492 : 1 : 0 : 0 : 17 : 17
6527 : 8 : 0 : 0 : 6 : 27
6568 : 1 : 0 : 0 : 5 : 28
6603 : 0 : 0 : 0 : 8 : 26
6637 : 1 : 0 : 0 : 13 : 20
6671 : 2 : 0 : 0 : 16 : 17
6707 : 1 : 0 : 0 : 5 : 28
6741 : 5 : 0 : 0 : 13 : 20
6782 : 1 : 0 : 0 : 7 : 26
6816 : 1 : 0 : 0 : 25 : 9
6851 : 0 : 1 : 0 : 10 : 23
6886 : 0 : 0 : 0 : 8 : 26
6920 : 0 : 0 : 0 : 9 : 25
6959 : 0 : 0 : 0 : 15 : 19
6993 : 1 : 0 : 0 : 6 : 28
7028 : 0 : 0 : 0 : 10 : 24
7064 : 1 : 0 : 0 : 9 : 24
7098 : 1 : 0 : 0 : 9 : 24
7134 : 0 : 0 : 0 : 9 : 26
7169 : 14 : 0 : 0 : 7 : 26
7217 : 1 : 0 : 0 : 10 : 24
7252 : 0 : 0 : 0 : 7 : 27
7286 : 0 : 0 : 0 : 9 : 25
7322 : 0 : 0 : 1 : 18 : 15
7356 : 12 : 0 : 0 : 6 : 27
7403 : 1 : 0 : 0 : 10 : 23
7438 : 0 : 0 : 1 : 6 : 27
7472 : 1 : 0 : 0 : 5 : 28
7506 : 1 : 0 : 0 : 7 : 26
7540 : 9 : 0 : 0 : 7 : 27
7583 : 1 : 0 : 0 : 5 : 28
7617 : 1 : 0 : 0 : 12 : 21
7651 : 2 : 0 : 0 : 9 : 24
7686 : 2 : 0 : 0 : 10 : 23
7722 : 1 : 0 : 0 : 6 : 27
7756 : 1 : 0 : 0 : 14 : 20
7791 : 4 : 0 : 0 : 14 : 20
7829 : 1 : 0 : 0 : 8 : 25
7863 : 1 : 0 : 0 : 22 : 11
7898 : 0 : 0 : 0 : 9 : 25
7932 : 0 : 0 : 0 : 9 : 25
7966 : 1 : 0 : 0 : 11 : 22
8000 : 1 : 0 : 0 : 9 : 24
8035 : 1 : 0 : 0 : 15 : 18
8069 : 6 : 0 : 0 : 24 : 10
8109 : 3 : 0 : 0 : 6 : 27
8145 : 1 : 0 : 0 : 15 : 18
8179 : 1 : 0 : 0 : 7 : 26
8214 : 1 : 0 : 0 : 12 : 21
8248 : 1 : 0 : 0 : 6 : 28
8283 : 1 : 0 : 0 : 17 : 17
8318 : 3 : 0 : 0 : 8 : 25
8354 : 1 : 0 : 0 : 5 : 28
8388 : 1 : 0 : 0 : 7 : 27
8423 : 0 : 0 : 0 : 13 : 21
8457 : 1 : 0 : 0 : 7 : 26
8491 : 1 : 0 : 0 : 10 : 24
8526 : 0 : 0 : 0 : 7 : 27
8560 : 2 : 0 : 0 : 14 : 19
8612 : 1 : 0 : 0 : 27 : 6
8646 : 1 : 0 : 0 : 0 : 33
8682 : 0 : 0 : 0 : 0 : 34
8716 : 0 : 0 : 0 : *0* : *121* : 121 : 912
9750 : 0 : 0 : 0 : *0* : *128* : 129 : 0
9879 : 7 : 0 : 0 : *0* : *124* : 125 : 0
10011 : 7 : 0 : 0 : *0* : *123* : 124 : 0
10142 : 11 : 0 : 0 : *0* : *127* : 129 : 0
10282 : 4 : 0 : 0 : *0* : *121* : 121 : 0
10407 : 14 : 0 : 0 : *0* : *126* : 126 : 0
10547 : 7 : 0 : 0 : *0* : *121* : 121 : 0
10675 : 14 : 0 : 0 : *0* : *124* : 124 : 909
11727 : 0 : 0 : 0 : *1* : *124* : 125 : 0
11854 : 7 : 0 : 0 : *0* : *128* : 129 : 0
11991 : 3 : 0 : 0 : *0* : *121* : 122 : 0
12116 : 13 : 0 : 0 : *0* : *119* : 119 : 0
12248 : 14 : 0 : 0 : *0* : *127* : 127 : 0
12390 : 6 : 0 : 0 : *0* : *130* : 130 : 0
12526 : 4 : 0 : 0 : *0* : *123* : 123 : 0
12653 : 11 : 0 : 0 : *0* : *127* : 127 : 906
13727 : 9 : 0 : 0 : *0* : *118* : 118 : 0
13854 : 18 : 0 : 0 : *0* : *127* : 128 : 0
14000 : 4 : 0 : 0 : *0* : *122* : 122 : 0
14126 : 13 : 0 : 0 : *0* : *122* : 123 : 0
14262 : 15 : 0 : 0 : *0* : *128* : 128 : 0
14405 : 18 : 0 : 0 : *0* : *124* : 126 : 0
14549 : 8 : 0 : 0 : *0* : *127* : 128 : 0
14685 : 9 : 0 : 0 : *0* : *128* : 129 : 905
15763 : 0 : 0 : 0 : *0* : *117* : 117 : 0
15883 : 15 : 0 : 0 : *0* : *127* : 128 : 0
16026 : 8 : 0 : 0 : *0* : *124* : 125 : 0
16159 : 7 : 0 : 0 : *0* : *148* : 148 : 0
16314 : 3 : 0 : 0 : *0* : *130* : 130 : 0
16447 : 3 : 0 : 0 : *0* : *128* : 128 : 0
16578 : 8 : 0 : 0 : *0* : *145* : 145 : 888
17619 : 2 : 0 : 0 : *0* : *131* : 132 : 901
18658 : 22 : 0 : 0 : *0* : *323* : 324 : 709
19715 : 1 : 0 : 0 : *0* : *174* : 174 : 859
20798 : 0 : 0 : 0 : *0* : *168* : 168 : 0
20967 : 7 : 0 : 0 : *0* : *180* : 181 : 0
21155 : 3 : 0 : 0 : *0* : *173* : 173 : 0
21333 : 11 : 0 : 0 : *0* : *171* : 172 : 0
21521 : 8 : 0 : 0 : *0* : *182* : 183 : 0
21718 : 13 : 0 : 0 : *0* : *174* : 175 : 0
21912 : 1 : 0 : 0 : *0* : *182* : 182 : 0
22102 : 1 : 0 : 0 : *0* : *174* : 174 : 0
22283 : 1 : 0 : 0 : *0* : *174* : 175 : 0
22467 : 0 : 0 : 0 : *0* : *171* : 172 : 0
22645 : 4 : 0 : 0 : *0* : *171* : 172 : 861
23743 : 1 : 0 : 0 : *0* : *166* : 166 : 0
23915 : 11 : 0 : 0 : *0* : *178* : 178 : 1
24114 : 0 : 0 : 0 : *0* : *174* : 174 : 0
24294 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24474 : 1 : 0 : 0 : *0* : *172* : 173 : 0
24654 : 6 : 0 : 0 : *0* : *173* : 173 : 861
25760 : 1 : 0 : 0 : *0* : *166* : 166 : 0
25935 : 0 : 0 : 0 : *0* : *182* : 182 : 0
26123 : 11 : 0 : 0 : *0* : *175* : 176 : 0
26316 : 2 : 0 : 0 : *0* : *172* : 172 : 0
26497 : 6 : 0 : 0 : *0* : *173* : 173 : 0
26683 : 4 : 0 : 0 : *0* : *183* : 183 : 850
27784 : 0 : 0 : 0 : *0* : *170* : 171 : 0
27964 : 0 : 0 : 0 : *0* : *183* : 183 : 0
28154 : 8 : 0 : 0 : *0* : *186* : 186 : 0
28358 : 4 : 0 : 0 : *0* : *174* : 174 : 0
28542 : 4 : 0 : 0 : *0* : *178* : 179 : 854
29610 : 9 : 0 : 0 : *0* : *166* : 166 : 867
30719 : 0 : 0 : 0 : *1* : *167* : 168 : 0
30894 : 0 : 0 : 0 : *0* : *169* : 170 : 0
31069 : 13 : 0 : 0 : *0* : *171* : 171 : 0
31261 : 0 : 0 : 0 : *0* : *177* : 178 : 0
31445 : 1 : 0 : 0 : *0* : *172* : 172 : 0
31625 : 4 : 0 : 0 : *0* : *176* : 176 : 857
32674 : 1 : 0 : 0 : *0* : *169* : 170 : 863
33734 : 8 : 0 : 0 : *0* : *171* : 172 : 0
33914 : 12 : 0 : 0 : *0* : *178* : 178 : 0
34110 : 1 : 0 : 0 : *0* : *171* : 172 : 0
34283 : 11 : 0 : 0 : *0* : *178* : 178 : 0
34472 : 6 : 0 : 0 : *0* : *178* : 178 : 0
34656 : 6 : 0 : 0 : *0* : *170* : 171 : 862
35695 : 1 : 0 : 0 : *0* : *177* : 179 : 855
36730 : 1 : 0 : 0 : *0* : *187* : 187 : 0
36919 : 6 : 0 : 0 : *0* : *172* : 172 : 0
37097 : 13 : 0 : 0 : *0* : *179* : 179 : 0
37289 : 5 : 0 : 0 : *0* : *185* : 186 : 0
37480 : 13 : 0 : 0 : *1* : *174* : 176 : 0
37669 : 9 : 0 : 0 : *0* : *179* : 180 : 853
38712 : 0 : 0 : 0 : *0* : *174* : 175 : 859
39746 : 1 : 0 : 0 : *0* : *176* : 177 : 0
39924 : 20 : 0 : 0 : *0* : *179* : 179 : 0
40123 : 17 : 0 : 0 : *0* : *167* : 168 : 0
40308 : 19 : 0 : 0 : *0* : *165* : 167 : 0
40494 : 15 : 0 : 0 : *0* : *179* : 179 : 0
40688 : 6 : 0 : 0 : *0* : *178* : 179 : 854
41727 : 1 : 0 : 0 : *1* : *174* : 175 : 0
41903 : 13 : 0 : 0 : *0* : *173* : 173 : 0
42089 : 13 : 0 : 0 : *0* : *176* : 177 : 0
42279 : 6 : 0 : 0 : *0* : *185* : 186 : 0
42471 : 15 : 0 : 0 : *0* : *179* : 180 : 0
42666 : 4 : 0 : 0 : *0* : *172* : 173 : 860
43703 : 1 : 0 : 0 : *0* : *174* : 175 : 858
44738 : 1 : 0 : 0 : *0* : *184* : 184 : 0
44923 : 8 : 0 : 0 : *0* : *179* : 180 : 0
45111 : 7 : 0 : 0 : *0* : *178* : 178 : 0
45296 : 6 : 0 : 0 : *0* : *174* : 174 : 0
45476 : 9 : 0 : 0 : *0* : *196* : 197 : 0
45682 : 4 : 0 : 0 : *0* : *190* : 190 : 843
46719 : 1 : 0 : 0 : *0* : *170* : 171 : 0
46891 : 21 : 0 : 0 : *0* : *168* : 168 : 0
47080 : 13 : 0 : 0 : *0* : *178* : 178 : 0
47271 : 6 : 0 : 0 : *0* : *173* : 173 : 0
47450 : 12 : 0 : 0 : *0* : *176* : 176 : 0
47639 : 7 : 0 : 0 : *0* : *172* : 172 : 861
48679 : 1 : 0 : 0 : *0* : *175* : 175 : 859
49714 : 1 : 0 : 0 : *0* : *175* : 175 : 858
50751 : 0 : 0 : 0 : *0* : *183* : 184 : 0
50935 : 13 : 0 : 0 : *0* : *173* : 173 : 0
51121 : 12 : 0 : 0 : *0* : *176* : 177 : 0
51310 : 7 : 0 : 0 : *0* : *172* : 173 : 0
51490 : 9 : 0 : 0 : *0* : *168* : 169 : 0
51668 : 15 : 0 : 0 : *0* : *170* : 171 : 863
52717 : 1 : 0 : 0 : *0* : *170* : 170 : 863
53754 : 1 : 0 : 0 : *0* : *182* : 182 : 0
53937 : 9 : 0 : 0 : *0* : *185* : 185 : 0
54131 : 15 : 0 : 0 : *0* : *181* : 181 : 0
54327 : 3 : 0 : 0 : *0* : *175* : 176 : 0
54506 : 11 : 0 : 0 : *1* : *168* : 169 : 0
54686 : 15 : 0 : 0 : *0* : *179* : 179 : 854
55734 : 1 : 0 : 0 : *0* : *170* : 170 : 0
55906 : 16 : 0 : 0 : 0 : 34
55957 : 0 : 0 : 0 : 10 : 23
55990 : 1 : 0 : 0 : 28 : 6
56025 : 0 : 0 : 0 : 8 : 26
56059 : 1 : 0 : 0 : 9 : 24
56093 : 1 : 0 : 0 : 7 : 26
56127 : 1 : 0 : 0 : 22 : 11
56161 : 2 : 0 : 0 : 21 : 12
56196 : 8 : 0 : 0 : 8 : 25
56237 : 1 : 0 : 0 : 6 : 27
56271 : 1 : 0 : 0 : 12 : 21
56306 : 3 : 0 : 0 : 11 : 23
56343 : 1 : 0 : 0 : 6 : 27
56377 : 1 : 0 : 0 : 8 : 25
56411 : 1 : 0 : 0 : 15 : 19
56446 : 7 : 0 : 0 : 11 : 22
56486 : 1 : 0 : 0 : 6 : 27
56520 : 1 : 0 : 0 : 7 : 26
56555 : 0 : 0 : 0 : 13 : 21
56589 : 0 : 0 : 0 : 7 : 27
56623 : 0 : 0 : 0 : 8 : 26
56657 : 8 : 0 : 0 : 18 : 16
56699 : 0 : 0 : 0 : 7 : 27
56733 : 0 : 0 : 0 : 27 : 7
56767 : 9 : 0 : 0 : 26 : 8
56810 : 3 : 0 : 0 : 8 : 26
56847 : 1 : 0 : 0 : 19 : 19
56886 : 7 : 0 : 0 : 7 : 27
56927 : 1 : 0 : 0 : 7 : 26
56961 : 1 : 0 : 0 : 8 : 25
56995 : 1 : 0 : 0 : 17 : 16
57029 : 1 : 0 : 0 : 8 : 26
57064 : 1 : 0 : 0 : 19 : 18
57102 : 6 : 0 : 1 : 7 : 26
57142 : 1 : 0 : 0 : 8 : 25
57176 : 1 : 0 : 0 : 15 : 19
57211 : 0 : 0 : 0 : 17 : 17
57246 : 1 : 0 : 0 : 5 : 28
57280 : 1 : 0 : 0 : 8 : 25
57314 : 2 : 0 : 0 : 14 : 19
57349 : 5 : 0 : 0 : 7 : 26
57389 : 0 : 0 : 0 : 6 : 27
57423 : 0 : 0 : 0 : 24 : 10
57457 : 7 : 0 : 0 : 19 : 14
57498 : 1 : 0 : 0 : 10 : 23
57532 : 1 : 0 : 0 : 6 : 27
57577 : 0 : 0 : 0 : 9 : 25
57611 : 0 : 0 : 0 : 9 : 25
57645 : 1 : 0 : 0 : 12 : 21
57679 : 1 : 0 : 0 : 11 : 22
57714 : 1 : 0 : 0 : 12 : 1022
58761 : 1 : 0 : 0 : 12 : 21
58795 : 1 : 0 : 0 : 16 : 17
58829 : 3 : 0 : 0 : 7 : 27
58866 : 0 : 0 : 0 : 21 : 13
58900 : 4 : 0 : 0 : 30 : 4
58938 : 0 : 0 : 0 : 11 : 24
58973 : 6 : 0 : 0 : 18 : 16
59013 : 0 : 1 : 0 : 13 : 20
59047 : 1 : 0 : 0 : 20 : 13
59081 : 1 : 0 : 0 : 10 : 23
59115 : 1 : 0 : 0 : 12 : 22
59150 : 0 : 0 : 0 : 7 : 27
59184 : 12 : 0 : 0 : 8 : 25
59230 : 0 : 0 : 0 : 24 : 10
59264 : 0 : 0 : 0 : 10 : 24
59298 : 1 : 0 : 0 : 14 : 19
59334 : 2 : 0 : 0 : 11 : 23
59370 : 1 : 0 : 0 : 5 : 28
59408 : 7 : 0 : 0 : 5 : 28
59448 : 2 : 0 : 0 : 22 : 11
59483 : 1 : 0 : 0 : 10 : 23
59518 : 0 : 0 : 0 : 12 : 22
59552 : 2 : 0 : 0 : 8 : 25
59587 : 6 : 0 : 0 : 9 : 24
59629 : 0 : 0 : 0 : 22 : 12
59663 : 0 : 0 : 0 : 26 : 8
59697 : 1 : 0 : 0 : 9 : 24
59732 : 1 : 0 : 0 : 20 : 13
59766 : 1 : 0 : 0 : 6 : 27
59801 : 1 : 0 : 0 : 17 : 16
59835 : 1 : 0 : 0 : 14 : 20
59880 : 0 : 0 : 0 : 15 : 19
59914 : 0 : 0 : 0 : 7 : 27
59948 : 1 : 0 : 0 : 22 : 11
59983 : 1 : 0 : 0 : 5 : 28
60017 : 2 : 0 : 0 : 13 : 21
60058 : 1 : 0 : 0 : 21 : 13
60093 : 1 : 0 : 0 : 7 : 27
60128 : 1 : 0 : 0 : 27 : 6
60164 : 1 : 0 : 0 : 12 : 22
60199 : 5 : 0 : 0 : 19 : 14
60238 : 1 : 0 : 0 : 11 : 23
60273 : 1 : 0 : 0 : 8 : 26
60323 : 0 : 0 : 0 : 15 : 18
60357 : 0 : 0 : 0 : 9 : 25
60393 : 1 : 0 : 0 : 13 : 20
60427 : 2 : 0 : 0 : 9 : 24
60467 : 2 : 0 : 0 : 16 : 17
60514 : 1 : 0 : 0 : 9 : 25
60549 : 0 : 0 : 0 : 7 : 27
60584 : 0 : 0 : 0 : 10 : 24
60618 : 0 : 0 : 0 : 8 : 26
60654 : 1 : 0 : 0 : 13 : 20
60689 : 0 : 0 : 0 : 16 : 18
60723 : 4 : 0 : 0 : 10 : 24
60762 : 0 : 0 : 0 : 27 : 7
60796 : 1 : 0 : 0 : 10 : 24
60849 : 1 : 0 : 0 : 20 : 14
60885 : 1 : 0 : 0 : 8 : 25
60919 : 1 : 0 : 0 : 17 : 17
60956 : 1 : 0 : 0 : 17 : 17
60991 : 1 : 0 : 0 : 7 : 27
61027 : 1 : 0 : 0 : 6 : 27
61061 : 1 : 0 : 0 : 10 : 23
61096 : 1 : 0 : 0 : 12 : 21
61130 : 1 : 0 : 0 : 12 : 22
61165 : 0 : 0 : 0 : 6 : 28
61203 : 1 : 0 : 0 : 21 : 13
61243 : 1 : 0 : 0 : 7 : 26
61278 : 0 : 0 : 0 : 37 : 0
61315 : 1 : 0 : 0 : 7 : 27
61350 : 1 : 0 : 0 : 9 : 24
61384 : 1 : 0 : 0 : 14 : 20
61419 : 6 : 0 : 0 : 6 : 27
61458 : 1 : 0 : 0 : 18 : 15
61492 : 4 : 0 : 0 : 8 : 25
61529 : 1 : 1 : 0 : 18 : 15
61564 : 1 : 0 : 0 : 9 : 24
61598 : 1 : 0 : 0 : 11 : 22
61632 : 9 : 0 : 0 : 16 : 18
61675 : 1 : 0 : 0 : 6 : 27
61709 : 1 : 0 : 0 : 19 : 1014
62746 : 1 : 0 : 0 : 10 : 23
62780 : 1 : 0 : 0 : 16 : 18
62815 : 4 : 0 : 0 : 7 : 26
62852 : 2 : 0 : 0 : 7 : 27
62888 : 0 : 0 : 0 : 10 : 24
62922 : 1 : 0 : 0 : 7 : 26
62956 : 1 : 0 : 0 : 8 : 26
62991 : 1 : 0 : 0 : 6 : 27
63025 : 1 : 0 : 0 : 14 : 20
63060 : 5 : 0 : 0 : 16 : 17
63098 : 1 : 0 : 0 : 6 : 28
63133 : 0 : 0 : 0 : 10 : 24
63167 : 1 : 0 : 0 : 6 : 27
63201 : 2 : 0 : 0 : 14 : 19
63237 : 0 : 0 : 0 : 11 : 23
63271 : 1 : 0 : 0 : 9 : 25
63306 : 9 : 0 : 0 : 24 : 9
63348 : 1 : 0 : 0 : 7 : 27
63383 : 0 : 0 : 0 : 6 : 28
63417 : 1 : 0 : 0 : 24 : 10
63452 : 1 : 0 : 0 : 6 : 27
63487 : 0 : 0 : 0 : 13 : 21
63529 : 0 : 0 : 0 : 6 : 28
63563 : 5 : 0 : 0 : 7 : 26
63601 : 1 : 0 : 0 : 13 : 20
63638 : 1 : 0 : 0 : 19 : 14
63673 : 1 : 0 : 0 : 11 : 22
63707 : 1 : 0 : 0 : 8 : 26
63742 : 5 : 0 : 0 : 24 : 10
63781 : 3 : 0 : 0 : 8 : 25
63817 : 1 : 0 : 0 : 23 : 10
63852 : 0 : 0 : 0 : 11 : 23
63886 : 1 : 0 : 0 : 21 : 12
63920 : 1 : 0 : 0 : 8 : 25
63954 : 2 : 0 : 0 : 10 : 27
63993 : 5 : 0 : 0 : 27 : 7
64032 : 2 : 0 : 0 : 6 : 27
64067 : 1 : 0 : 0 : 6 : 27
64102 : 0 : 0 : 0 : 23 : 11
64137 : 2 : 0 : 0 : 18 : 16
AL lib: ALc.c:1879: exit(): closing 1 Device
AL lib: ALc.c:1808: alcCloseDevice(): destroying 1 Context(s)
AL lib: ALc.c:1420: alcDestroyContext(): deleting 30 Source(s)
AL lib: ALc.c:1818: alcCloseDevice(): deleting 25 Buffer(s)
Perfect, thank you so much.
According to that it is as I suspected, the actual calculations are taking no time at all, its the code that actually draws stuff on the screen that is the problem. I think I should be able to fix it, it was something that should have been done in the beginning, but I really didn't understand OpenGL well when this was written, so its really just laziness that has prevented me from fixing it until now.
Also, according to those numbers, it looks like the menus are running at the correct speed, with the exception of whatever craziness happened at 1707 (maybe you moved or resized the window?). Are the menus in fact running at the correct speed?
 
Old 04-24-2012, 12:15 AM   #45
manu-tm
Member
 
Registered: May 2008
Location: France
Distribution: Ubuntu, Debian
Posts: 343

Rep: Reputation: 43
Quote:
Originally Posted by prushik View Post
Also, according to those numbers, it looks like the menus are running at the correct speed, with the exception of whatever craziness happened at 1707 (maybe you moved or resized the window?). Are the menus in fact running at the correct speed?
Yes, they are. And I maximized the window.
 
  


Reply

Tags
alpha, beerware, network, opengl, testing



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] OpenGL? Or a lib? Error when starting the game Sauerbraten. kasumi Slackware 5 12-15-2010 12:19 PM
Looking for testers for indie game: Air Forte Brendon Chung Linux - Games 3 07-04-2010 09:01 PM
Simple Linux OpenGL game Starch Programming 3 03-17-2005 10:32 AM
Oddlabs looking for beta testers for new 3D RTS game Oddlabs Linux - Games 0 07-06-2004 07:41 AM
Starting a non OpenGL game in Linux. Need advice! Mega Man X Programming 3 03-09-2004 04:00 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software > Linux - Games

All times are GMT -5. The time now is 08:14 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration