mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Various build folders added to .gitignore and fixed an error in opengl driver on mac
This commit is contained in:
parent
7e1800a9fe
commit
598eadfa62
2 changed files with 6 additions and 1 deletions
5
.gitignore
vendored
5
.gitignore
vendored
|
@ -162,6 +162,11 @@ build/*
|
||||||
install/*
|
install/*
|
||||||
build_vc*
|
build_vc*
|
||||||
code/nel/tools/build_gamedata/configuration/buildsite.py
|
code/nel/tools/build_gamedata/configuration/buildsite.py
|
||||||
|
code/build_mac
|
||||||
|
code/build_linux32
|
||||||
|
code/build_linux64
|
||||||
|
code/build_windows32
|
||||||
|
code/build_server
|
||||||
|
|
||||||
# Linux nel compile
|
# Linux nel compile
|
||||||
code/nel/build/nel-config
|
code/nel/build/nel-config
|
||||||
|
|
|
@ -1486,7 +1486,7 @@ bool CDriverGL::createWindow(const GfxMode &mode)
|
||||||
[[CocoaApplicationDelegate alloc] initWithDriver:this];
|
[[CocoaApplicationDelegate alloc] initWithDriver:this];
|
||||||
|
|
||||||
// set the application delegate, this will handle window/app close events
|
// set the application delegate, this will handle window/app close events
|
||||||
[NSApp setDelegate:(id<NSFileManagerDelegate>)appDelegate];
|
[NSApp setDelegate:(id<NSApplicationDelegate>)appDelegate];
|
||||||
|
|
||||||
// bind the close button of the window to applicationShouldTerminate
|
// bind the close button of the window to applicationShouldTerminate
|
||||||
id closeButton = [cocoa_window standardWindowButton:NSWindowCloseButton];
|
id closeButton = [cocoa_window standardWindowButton:NSWindowCloseButton];
|
||||||
|
|
Loading…
Reference in a new issue