acdb516ffd
a non-default implementation of a driver, and organizing them by architecture doesn't handle that very well.
27 lines
440 B
C++
27 lines
440 B
C++
#ifndef LOADING_WINDOW_SDL_H
|
|
#define LOADING_WINDOW_SDL_H
|
|
|
|
#include "LoadingWindow.h"
|
|
#include "SDL.h"
|
|
|
|
class LoadingWindow_SDL: public LoadingWindow {
|
|
SDL_Surface *loading_screen;
|
|
|
|
public:
|
|
LoadingWindow_SDL();
|
|
~LoadingWindow_SDL();
|
|
|
|
void Paint();
|
|
};
|
|
|
|
#undef ARCH_LOADING_WINDOW
|
|
#define ARCH_LOADING_WINDOW LoadingWindow_SDL
|
|
|
|
#endif
|
|
|
|
/*
|
|
* Copyright (c) 2002 by the person(s) listed below. All rights reserved.
|
|
*
|
|
* Glenn Maynard
|
|
*/
|