diff --git a/backends/platform/wince/wince-sdl.cpp b/backends/platform/wince/wince-sdl.cpp
index 344edd7..9a4b312 100644
a
|
b
|
int OSystem_WINCE3::getOutputSampleRate() const {
|
908 | 908 | return _sampleRate; |
909 | 909 | } |
910 | 910 | |
911 | | void OSystem_WINCE3::setWindowCaption(const char *caption) { |
| 911 | void OSystem_WINCE3::engineInit() { |
912 | 912 | check_mappings(); // called here to initialize virtual keys handling |
913 | 913 | |
914 | 914 | //update_game_settings(); |
915 | 915 | // finalize mixer init |
916 | 916 | compute_sample_rate(); |
917 | 917 | setupMixer(); |
918 | | |
919 | | // handle the actual event |
920 | | OSystem_SDL::setWindowCaption(caption); |
921 | 918 | } |
922 | 919 | |
923 | 920 | bool OSystem_WINCE3::openCD(int drive) { |
diff --git a/backends/platform/wince/wince-sdl.h b/backends/platform/wince/wince-sdl.h
index 13f20ec..cc2948f 100644
a
|
b
|
public:
|
84 | 84 | // Overloaded from SDL backend (master volume and sample rate subtleties) |
85 | 85 | void setupMixer(); |
86 | 86 | // Overloaded from OSystem |
87 | | //void engineInit(); |
| 87 | void engineInit(); |
88 | 88 | void getTimeAndDate(struct tm &t) const; |
89 | 89 | virtual Common::SeekableReadStream *createConfigReadStream(); |
90 | 90 | virtual Common::WriteStream *createConfigWriteStream(); |
… |
… |
protected:
|
145 | 145 | //int getGraphicsMode() const; |
146 | 146 | int getDefaultGraphicsMode() const; |
147 | 147 | |
148 | | void setWindowCaption(const char *caption); |
149 | 148 | bool openCD(int drive); |
150 | 149 | int getOutputSampleRate() const; |
151 | 150 | |