diff options
author | rubidium <rubidium@openttd.org> | 2009-09-06 23:12:25 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-09-06 23:12:25 +0000 |
commit | 9168ddd5507026b6346797f48bd0853091cbcb4e (patch) | |
tree | 98053ccb574b08a688173dff689312ff03a37324 | |
parent | e292112319ab55d5dfae43bf73858ca8814b47d4 (diff) | |
download | openttd-9168ddd5507026b6346797f48bd0853091cbcb4e.tar.xz |
(svn r17438) -Fix (r17428): ofcourse some part of the OSX port would be forgotten due to it being so much different than the rest :(
-rw-r--r-- | src/video/cocoa/cocoa_v.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video/cocoa/cocoa_v.h b/src/video/cocoa/cocoa_v.h index dab716b11..a2dbc1395 100644 --- a/src/video/cocoa/cocoa_v.h +++ b/src/video/cocoa/cocoa_v.h @@ -29,6 +29,8 @@ public: /* virtual */ bool ChangeResolution(int w, int h); /* virtual */ bool ToggleFullscreen(bool fullscreen); + + /* virtual */ const char *GetName() const { return "cocoa"; } }; class FVideoDriver_Cocoa: public VideoDriverFactory<FVideoDriver_Cocoa> { |