James Potter - 2010-04-04

This is the error i am receiving compiling my code. I am using DEV C++. Here
is the list of the parameters which i have used.

" -lmingw32 -ISDL -lSDLmain -mwindows -lSDL_mixer -lopengl32 -lglu32
-sdl_Mixer "
This is what the main looks like.

#include <stdio.h>
#include "Game.h"

int main(int argc, char **argv) {
  Game pacman_game=Game();
  if(pacman_game.initialize()) {
    while(pacman_game.update()) {
      pacman_game.draw();

   }
  }
  else 
    printf("Couldn't initialize game.");
}

I have been on this issue for a couple of hours! Searched a lot in google to
no avail. Please help! I am running Windows Vista. DEV C++ 4.9.9.2 version.