Fix OSXCROSS build with clang-6.0
This commit is contained in:
parent
7de36f0517
commit
875d822d77
|
@ -913,7 +913,7 @@ static int remapKey(unsigned int key) {
|
||||||
|
|
||||||
CFDataRef layoutData = (CFDataRef)TISGetInputSourceProperty(currentKeyboard, kTISPropertyUnicodeKeyLayoutData);
|
CFDataRef layoutData = (CFDataRef)TISGetInputSourceProperty(currentKeyboard, kTISPropertyUnicodeKeyLayoutData);
|
||||||
if (!layoutData)
|
if (!layoutData)
|
||||||
return nil;
|
return 0;
|
||||||
|
|
||||||
const UCKeyboardLayout *keyboardLayout = (const UCKeyboardLayout *)CFDataGetBytePtr(layoutData);
|
const UCKeyboardLayout *keyboardLayout = (const UCKeyboardLayout *)CFDataGetBytePtr(layoutData);
|
||||||
|
|
||||||
|
@ -1740,7 +1740,8 @@ String OS_OSX::get_godot_dir_name() const {
|
||||||
|
|
||||||
String OS_OSX::get_system_dir(SystemDir p_dir) const {
|
String OS_OSX::get_system_dir(SystemDir p_dir) const {
|
||||||
|
|
||||||
NSSearchPathDirectory id = 0;
|
NSSearchPathDirectory id;
|
||||||
|
bool found = true;
|
||||||
|
|
||||||
switch (p_dir) {
|
switch (p_dir) {
|
||||||
case SYSTEM_DIR_DESKTOP: {
|
case SYSTEM_DIR_DESKTOP: {
|
||||||
|
@ -1761,10 +1762,13 @@ String OS_OSX::get_system_dir(SystemDir p_dir) const {
|
||||||
case SYSTEM_DIR_PICTURES: {
|
case SYSTEM_DIR_PICTURES: {
|
||||||
id = NSPicturesDirectory;
|
id = NSPicturesDirectory;
|
||||||
} break;
|
} break;
|
||||||
|
default: {
|
||||||
|
found = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String ret;
|
String ret;
|
||||||
if (id) {
|
if (found) {
|
||||||
|
|
||||||
NSArray *paths = NSSearchPathForDirectoriesInDomains(id, NSUserDomainMask, YES);
|
NSArray *paths = NSSearchPathForDirectoriesInDomains(id, NSUserDomainMask, YES);
|
||||||
if (paths && [paths count] >= 1) {
|
if (paths && [paths count] >= 1) {
|
||||||
|
|
Loading…
Reference in New Issue