Quote:Originally Posted by rdr09 for a single 1080/60Hz monitor . . . you only need one highend gpu to max out most games except a few like C3. oc your cpu to 4.4GHz and leave the gpu at stock even.
sounds good, what differences...
I dont wanna get a new monitor cause my comp is on a campus and it will be a headache moving two monitors. plus my monitor is 24" (23.6") so it would look odd next to my monitor
Quote:Originally Posted by ivanlabrie Look, I'd get a...
HI all
In the next month i may buy myself a new gfx card, as my 6950 is starting to show its age.
I have come to a dilemma, 2 x 6950's are faster than a single gtx 680 and costs me about £100-£150 whereas a gtx 680 is £400.
I am afraid i...
Quote:Originally Posted by JQuantum Is your entire main portion of the game in a loop?
If it is I generally just have an exit trigger for the loop for example
while(!varExit){
[main program]
...
if finished game
then varExit =...
okay so i tried the do while loop and now instead of just going in circles it simply exits if the answer is not an integer,
So i did scanf to find value of "pasnwer" when i hit a alphabetical key, and it returns 0.
is there a way to...
already tried that
Code:
while(error == 1)
switch(pagain){
case 1:
play = 1;
error = 0;
printf("success!\n");
break;
case 0:
printf("Goodbye!\n");
play =...
Hi all
i am trying to use a switch statement to ask if a player wants to play again
Code:
//play again
printf("would you like to play again?: 1\\0\n");
scanf("%d", &pagain);
switch(pagain){
case...