Twinaphex
3ce378d264
(OSX/iOS) Build fixes for changes in setting_data_get_list
2014-10-08 02:42:41 +02:00
Twinaphex
665a56b0b4
(iOS) Properly implement this - seems to fix the issue on second startup
...
with the simulator
2014-10-07 04:55:14 +02:00
Twinaphex
d2acf88e05
(iOS) pushViewController always in applicationDidFinishLaunching
2014-10-07 04:24:19 +02:00
Twinaphex
e64c530e6b
(iOS) Cleanup applicationDidFinishLaunching implementation
2014-10-07 04:18:42 +02:00
Twinaphex
945376ab2d
(iOS) Add more safeguards in apple_touch_event and apple_input_keyboard
...
event
2014-10-07 04:15:18 +02:00
twinaphex
8dbe11613d
Add need_refresh parameter to setting_data_get_list
2014-10-07 02:49:04 +02:00
Twinaphex
fdd616abcb
(joypad_connection.c) Refactor pt. 2
2014-10-06 01:49:00 +02:00
twinaphex
fdbb5af441
(BTPad) Cleanups
2014-10-05 00:58:47 +02:00
twinaphex
f2f529fb34
(btpad.c) Small change
2014-10-04 22:56:48 +02:00
Twinaphex
907b83065b
(pad_connection) Add pad_connection_init
2014-10-04 22:32:43 +02:00
Twinaphex
7b5407379c
(iOS/OSX) Nit
2014-10-04 22:32:43 +02:00
Twinaphex
8c269f119d
Set a function pointer inside each pad_connection device for
...
send_control
2014-10-04 22:05:38 +02:00
Twinaphex
9e26dec5fa
(iOS/OSX) Build fixes
2014-10-04 21:04:40 +02:00
twinaphex
5af2d315c4
Divorce pad_connection pad implementations from any Apple input-specific
...
implementations
2014-10-04 20:53:58 +02:00
twinaphex
b7a0098c80
rename joypad_connection_connect to pad_connection_connect
2014-10-04 18:51:26 +02:00
twinaphex
e9239316f8
Rename apple_joypad_disconnect to pad_connection_disconnect
2014-10-04 18:48:02 +02:00
twinaphex
4d14540997
Rename apple_joypad_packet to pad_connection_packet
2014-10-04 18:45:59 +02:00
twinaphex
14b17ed7d5
Rename apple_joypad_connect to joypad_connection_connect
2014-10-04 18:43:30 +02:00
twinaphex
c93982ef73
Rename apple_pad_send_control to pad_connection_send_control
2014-10-04 18:38:01 +02:00
Twinaphex
d2cd74a68e
Silence one warning in btdynamic.c
2014-10-04 18:32:35 +02:00
twinaphex
c2c73c02b6
(Apple) Change apple_pad_connection to pad_connection
2014-10-04 18:31:37 +02:00
twinaphex
09e27f523d
(Apple/iOS) Cleanups
2014-10-04 18:11:39 +02:00
Twinaphex
8b79b12002
(Apple) Cleanups
2014-10-04 17:01:56 +02:00
twinaphex
39b88c885b
(Apple) Cleanups
2014-10-03 21:52:47 +02:00
Twinaphex
d029362dd7
(GL) Make gl_alive more robust
2014-10-03 17:17:18 +02:00
Twinaphex
807818d4c6
(Apple) Reimplement input - get rid of g_current_input_data global
...
and instead initialize driver.input_data
2014-09-30 15:44:40 +02:00
Twinaphex
099b3f6fd7
(iOS) Menu - some cleanups
2014-09-28 18:18:26 +02:00
twinaphex
b1ac2049d7
(iOS) Get rid of apple_display_alert when no cores found
2014-09-28 07:13:40 +02:00
twinaphex
ce6c884724
Take out HAVE_CC_RESAMPLER define
2014-09-24 09:39:41 +02:00
Twinaphex
55154b6e53
Add cc_resampler_neon.S to iOS solution
2014-09-23 04:52:08 +02:00
Lioncash
965dd829b7
iOS: Use accessors instead of direct variables
2014-09-20 23:58:10 -04:00
Twinaphex
0dd4c17b93
Merge pull request #1045 from lioncash/warnings
...
iOS: Kill off some more warnings.
2014-09-21 05:31:29 +02:00
Lioncash
a8345b217b
iOS: Fix another signed/unsigned mismatch warning
2014-09-20 23:26:30 -04:00
Lioncash
402a08f554
iOS: Move instance variables in RetroArch_iOS over to properties.
2014-09-20 23:26:23 -04:00
Twinaphex
45a31c9969
(iOS) Add HAVE_LAKKA and HAVE_GLUI
2014-09-21 05:07:47 +02:00
Lioncash
3f8d11e6b7
iOS: Minor cleanup
...
- Clean up trailing whitespace.
- Get rid of a redundant initialize call.
- Access variables through their property equivalents.
2014-09-20 22:56:44 -04:00
Lioncash
f618b6de66
iOS: Fix mismatching types in iOS 7 keyboard code
2014-09-20 22:16:42 -04:00
Lioncash
1e02afcbdf
iOS: Get rid of some unsigned/signed comparison warnings.
2014-09-20 21:48:36 -04:00
Lioncash
ed192392f0
iOS: Directly synthsize RAMenuItemBasic properties
...
On iOS, when properties are not explicitly synthesized in their implementation, the compiler will attempt to do something that is called "autosynthesis", which is essentially it synthesizing the properties for you. However this problem with this is that it can trip up the compiler if you have a subclass of a base class that has a property with the same name as one in the base class.
Also consider how properties work. Say we have a property like so:
@property int someVar;
This is telling the compiler to make a getter and a setter for a class member variable named someVar which is of type int. So the following functions will be created.
+(int) someVar(), which is the getter.
+(void) setSomeVar:(int) var, which is the setter.
In this case, RAMenuItemBasic inherits from NSObject, which already has a function named "description", yet we were trying to generate a getter/setter for our own variable named that, which leads to clashing. This is why the property was never being synthesized correctly. Directly declaring the synthesizing calls ourself fixes this.
2014-09-20 16:54:06 -04:00
Twinaphex
cfd078812e
(Apple) iOS Xcode 6 build fix
2014-09-20 05:26:33 +02:00
Twinaphex
9fe1a66c3a
(iOS) Fix build
2014-09-15 19:08:01 +02:00
twinaphex
3787c831e7
(Wii) Compile in 7zip support
2014-09-12 22:24:18 +02:00
Twinaphex
de582c08fa
(Apple) Build fixes to solutions
2014-09-12 21:53:09 +02:00
twinaphex
660ba32d1a
(iOS) Update solution
2014-09-09 21:56:01 +02:00
Lioncash
4a0f3f4581
apple: Make the project adhere to the indentation style
2014-09-08 20:39:10 -04:00
Timo Strunk
76d62ae7fc
Restores isdirectory functionality in all guis again
2014-09-04 21:46:14 +02:00
Twinaphex
4d5e27e565
(iOS) Add HAVE_7ZIP support
2014-09-02 20:28:32 +02:00
Twinaphex
2747d1bd0d
(iOS) Build fixes #2 - add HAVE_FILTERS_BUILTIN
2014-08-25 01:53:20 +02:00
Twinaphex
2a77028609
(iOS) Build fixes #1
2014-08-25 01:51:37 +02:00
twinaphex
72e556083c
Rename core_info_has_custom_config to core_info_get_custom_config
2014-08-18 13:01:31 +02:00