gcc(또는 g++)에서 초기화 한 인자를 넣었으려고 할 때 에러나는 것 해결 방법
제가 오늘 g++로 컴파일 하는데 이런 부분에서 오류가 나더군요. // GameEngine.h ... void apply_surface(int x, int y, SDL_Surface* source, SDL_Surface* destination, int alpha = 255, double zoomx = 1.0, double zoomy = 1.0, int smooth = 0, SDL_Rect* clip = NULL); // 함수원형입니다 ... // GameEngine.cpp ... void apply_surface(int x, int y, SDL_Surface* source, SDL_Surface* destination, int alpha = 255, double zoomx = 1.0, double zoo..
더보기