9278 Commits

Author SHA1 Message Date
Themaister
f2a8a73322 Add workaround for ATI Catalyst's lack of GL_RGB565 support. 2014-01-05 22:29:57 +01:00
Themaister
bee70f8318 Fix ifdefs regarding READ_PIXELS. 2014-01-05 22:22:15 +01:00
Twinaphex
144ee18ed3 Merge pull request #473 from Bezier89/master
Allow auto detect core to work with mixed case extensions and zip files.
2014-01-05 13:23:46 -08:00
Bezier89
f274a409c7 Allow auto detect core to work with mixed case extensions and zip files. 2014-01-05 12:50:38 -08:00
meancoot
aa23e81cca (Apple) Fix building for 32-bit OSX 2014-01-05 14:56:45 -05:00
twinaphex
7e9c8908f8 (PS3) Set default overlay directory 2014-01-05 19:17:13 +01:00
twinaphex
472da5166e (PS3) Update ICON0.PNG/package.conf 2014-01-05 19:03:45 +01:00
twinaphex
e9ce0aaaa4 (PS3) Custom aspect ratio works now 2014-01-05 18:48:09 +01:00
twinaphex
2da438bcf0 (PS3) Add paths 2014-01-05 05:00:08 +01:00
twinaphex
8e0118f4bb Get rid of unused HAVE_RARCH_MAIN_IMPLEMENTATION and HAVE_RARCH_MAIN_WRAP 2014-01-05 03:33:27 +01:00
twinaphex
5578cd6ed6 (NGC) Fix build 2014-01-05 00:07:35 +01:00
twinaphex
54f0fb5319 (Wii) Bump up version 2014-01-04 22:52:26 +01:00
meancoot
4643e53cc8 (OSX) Re-add lion style fullscreen (still needs to be tested for Snow Leopard) 2014-01-04 14:05:22 -05:00
Themaister
388e9c7487 Make rom history handling a bit more robust.
If a missing core is trying to be loaded it can end up deleting the
entire ROM history because core_name is not found and history read from
file would then exit early.
2014-01-04 16:38:23 +01:00
twinaphex
b20b6525d3 (Android) PendingIntent code created bad dependencies on Java frontend and
made it impossible for external clients like Dinothawr to use RetroArch
as a library
2014-01-04 05:36:08 +01:00
meancoot
b5ea9b4eb9 (OSX) Use more sane default config path. 2014-01-03 17:16:02 -05:00
Themaister
79cd808e81 Fix broken use of SET_LIBRETRO_PATH. 2014-01-03 21:38:48 +01:00
Themaister
53502bd066 Add some FIXMEs. 2014-01-03 20:23:35 +01:00
Themaister
76c7f13f8c Add INPUT_UDEV string to get_default_input_driver. 2014-01-03 20:18:50 +01:00
twinaphex
70c3de9e33 (iOS) Replace icons 2014-01-03 18:39:01 +01:00
twinaphex
e716e084ac (OSX) Update OSX port to use new icon 2014-01-03 18:36:12 +01:00
Twinaphex
c592a41c62 Merge pull request #464 from hizzlekizzle/master
better commit for ios/osx icns
2014-01-03 09:31:40 -08:00
unknown
19543adbd0 add osx/ios icns 2014-01-03 11:29:54 -06:00
unknown
db9751a6b6 wipe out bad changes 2014-01-03 11:28:44 -06:00
unknown
bd38475660 replace retroarch.png with updated logo and added icns version 2014-01-03 11:18:56 -06:00
Themaister
76a6e61fdd Use core-specific config path for RGUI cgp/glslp if applicable.
Avoids some collisions.
2014-01-03 15:31:10 +01:00
Themaister
9c218bcf07 Fix unpack row len with 16-bit cores on desktop.
Missed call to UNPACK_ROW_LENGTH :(
2014-01-03 14:42:38 +01:00
Themaister
81fc0f621a Only call rarch_main_deinit if main has been initied. 2014-01-03 14:42:38 +01:00
twinaphex
998aac0765 (Android) Links to documentation changed 2014-01-03 00:26:02 +01:00
Themaister
ab807f5100 Update build zips for win. 2014-01-02 22:57:44 +01:00
twinaphex
c71f63008e (Android) Bump up version code to 26 - bump up version number to 1.0.0.0 2014-01-02 22:11:22 +01:00
twinaphex
e10f2cfe61 No longer going to maintain separate READMEs for console ports 2014-01-02 22:10:18 +01:00
Twinaphex
b74150d82a Merge pull request #460 from lioncash/master
Indicate downloadable cores are still in development for the Android front-end.
2014-01-02 12:57:06 -08:00
Lioncash
bf45b93775 Indicate downloadable cores are still in development for the Android front-end. 2014-01-02 15:43:10 -05:00
Twinaphex
12af0218a7 Merge pull request #459 from libretro/per-core-config2
Restructure per-core configs
2014-01-02 11:37:19 -08:00
Themaister
be81549d92 Only save per-core configs when core specific option is enabled.
Also, need to enforce that g_settings.core_specific_config is true
after loading core specific config. It's possible that core specific
option is set to false before loading a different core (using global
config only).
2014-01-02 18:01:01 +01:00
Themaister
13a006d147 Restructure per-core configs.
Merging yesterday was probably a bit premature.

One issue I overlooked was that per-core configs were not flushed to disk
when loading a new core on PC. The per-core flushing only happened on
main_exit(), which is only run on application termination. This hence
would only work with consoles with exitspawn.

config_set_defaults() must be called when loading per-core-specifics as
well or lots of options silently leak into other core specific configs
when cores are changed.

The handling with g_extern.config_path and original_config_path was
difficult logic and very error prone considering it was mutated aribitrarily by RGUI.
I've removed the original config path concept and stuck
with that config_path is *only* for global config, and
core_specific_config_path is for core-specifics (which are resolved
during config load). Saves some memory too,
which is always nice.

The block_config_read solution I proposed yesterday was not good after
all (in fact, broken on PC), and the current solution should work better.

"RetroArch Config" option in RGUI now only shows global config.
2014-01-02 17:52:48 +01:00
Themaister
a60d49293b Remove completely obsoleted "XML map" support.
This is from ancient times and no longer relevant.
2014-01-02 16:01:43 +01:00
Twinaphex
b57dd76478 Merge pull request #458 from hizzlekizzle/master
increase range_mod for analogs to 3.5 to avoid snapping back to center
2014-01-01 18:02:38 -08:00
hunterk
59b5cfd81b increase range_mod for analogs to 3.5 to avoid snapping back to center 2014-01-01 19:24:30 -06:00
Toad King
de5d749a3b Merge pull request #457 from libretro/per-core-config
Per-core configuration
2014-01-01 16:11:25 -08:00
Toad King
e0671aba8b per-core minor fixes 2014-01-01 19:06:06 -05:00
Themaister
69b104f9e4 Comment about BGRA8888. 2014-01-01 21:58:02 +01:00
Themaister
08ba1ad14e Use GL_RGB565 internal format when available.
This is a feature from ES2_compat extension.
It fixes the speed issue associated with using 16-bit textures on
desktop GL. Improves performance a bit as well as there's less bandwidth
usage during shading.

On my HD3000 laptop, performance improved with ~10%.
2014-01-01 21:58:02 +01:00
Toad King
e022b39061 fix per-core config on PC 2014-01-01 15:34:56 -05:00
Toad King
8f45063f74 menu support for core specific config 2014-01-01 15:02:57 -05:00
Toad King
5215a7cf24 save core specific config option 2014-01-01 14:52:35 -05:00
Toad King
0a91c528f9 core-specific config files 2014-01-01 14:44:20 -05:00
Twinaphex
63302e9404 Merge pull request #456 from hizzlekizzle/master
updated analogs to be moveable
2014-01-01 09:49:05 -08:00
hunterk
9c8b823731 updated analogs to be moveable 2014-01-01 11:47:05 -06:00