diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2017-02-13 23:46:25 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2017-02-13 23:46:25 +0100 |
| commit | e837b25f5506d065dd1be381b4158c49fc356d40 (patch) | |
| tree | 72249b9e46e5046b86438fd78b1760137a0f08ad | |
| parent | 55dc24f75313071db00d6281bb3255da60d7fa82 (diff) | |
Fix missing semicolon in previous commit
| -rw-r--r-- | platform/osx/os_osx.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/os_osx.mm b/platform/osx/os_osx.mm index d74200c744..7108d94b5b 100644 --- a/platform/osx/os_osx.mm +++ b/platform/osx/os_osx.mm @@ -1766,7 +1766,7 @@ OS_OSX* OS_OSX::singleton=NULL; OS_OSX::OS_OSX() { - mouse_mode=OS::MOUSE_MODE_VISIBLE + mouse_mode=OS::MOUSE_MODE_VISIBLE; main_loop=NULL; singleton=this; autoreleasePool = [[NSAutoreleasePool alloc] init]; |