X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=course%2Fsemester2%2Fpprog%2Fassignment1%2Fsingle-thread%2Fmain.c;fp=course%2Fsemester2%2Fpprog%2Fassignment1%2Fsingle-thread%2Fmain.c;h=4b0c48ac89fcca855ca1913992199fe46cac6068;hb=f012817dee17e24eee2e8951d138dab40b808ad3;hp=f9f3b529a1040a7b5021b7ebe9b569b3cc4388f2;hpb=a6366978284ba7c3762518e684e16561797053a5;p=matches%2Fhonours.git diff --git a/course/semester2/pprog/assignment1/single-thread/main.c b/course/semester2/pprog/assignment1/single-thread/main.c index f9f3b529..4b0c48ac 100644 --- a/course/semester2/pprog/assignment1/single-thread/main.c +++ b/course/semester2/pprog/assignment1/single-thread/main.c @@ -80,9 +80,9 @@ int main(int argc, char** argv) } options.start_clock = clock(); //Get CPU cycles executed before simulation starts - Simulation_Run(); // Start the simulation - Graphics_Run(argc, argv); //Start the graphics loop - + Simulation_Run(argc, argv); // Start the simulation + + printf("Got here!\n"); exit(EXIT_FAILURE); //Should never get to this line }