Ryujinx-SDL/premake/patches/711.patch
Edward Rudd b88ca1b4a6 the last parameter of XChangeProperty is the number of elements.. and when the element format is 32.. the element is "long" so we have 5 long elements here.
Yes this seems confusing as on mac+linux Long is either 32 or 64bits depending on the architecture, but this is how the X11 protocol is defined. Thus 5 is the correct value for the nelts here.  Not 5 or 10 depending on the architecture.

More info on the confusion https://bugs.freedesktop.org/show_bug.cgi?id=16802
2015-02-10 16:28:56 -05:00

31 lines
983 B
Diff
Executable File

# HG changeset patch
# User Ben Henning
# Date 1376453463 25200
# Tue Aug 13 21:11:03 2013 -0700
# Node ID a5f8b4f709722222e02fa481873d76ad25255e09
# Parent 8b24d45e6a5d717876a7b32b64e99043c95328e5
Implemented Xcode recognizing bitmap and wave files as resources, plus properly
set their types recognizable by Xcode itself.
diff --git a/src/actions/xcode/xcode_common.lua b/src/actions/xcode/xcode_common.lua
--- a/src/actions/xcode/xcode_common.lua
+++ b/src/actions/xcode/xcode_common.lua
@@ -32,6 +32,8 @@
[".nib"] = "Resources",
[".xib"] = "Resources",
[".icns"] = "Resources",
+ [".bmp"] = "Resources",
+ [".wav"] = "Resources",
}
return categories[path.getextension(node.name)]
end
@@ -85,6 +87,8 @@
[".strings"] = "text.plist.strings",
[".xib"] = "file.xib",
[".icns"] = "image.icns",
+ [".bmp"] = "image.bmp",
+ [".wav"] = "audio.wav",
}
return types[path.getextension(node.path)] or "text"
end