diff options
Diffstat (limited to 'src/common/emu_window.h')
| -rw-r--r-- | src/common/emu_window.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index de8badd4f..20131300d 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h | |||
| @@ -229,8 +229,7 @@ protected: | |||
| 229 | circle_pad_y = 0; | 229 | circle_pad_y = 0; |
| 230 | touch_pressed = false; | 230 | touch_pressed = false; |
| 231 | } | 231 | } |
| 232 | virtual ~EmuWindow() { | 232 | virtual ~EmuWindow() {} |
| 233 | } | ||
| 234 | 233 | ||
| 235 | /** | 234 | /** |
| 236 | * Processes any pending configuration changes from the last SetConfig call. | 235 | * Processes any pending configuration changes from the last SetConfig call. |
| @@ -272,8 +271,8 @@ private: | |||
| 272 | * For the request to be honored, EmuWindow implementations will usually reimplement this | 271 | * For the request to be honored, EmuWindow implementations will usually reimplement this |
| 273 | * function. | 272 | * function. |
| 274 | */ | 273 | */ |
| 275 | virtual void | 274 | virtual void OnMinimalClientAreaChangeRequest( |
| 276 | OnMinimalClientAreaChangeRequest(const std::pair<unsigned, unsigned>& minimal_size) { | 275 | const std::pair<unsigned, unsigned>& minimal_size) { |
| 277 | // By default, ignore this request and do nothing. | 276 | // By default, ignore this request and do nothing. |
| 278 | } | 277 | } |
| 279 | 278 | ||