Chris Burgener
bfb17d5a9e
Add configurable video dump bitrate to INI
2017-02-25 23:58:21 -05:00
Chris Burgener
4669b50e0b
Turn Off Debug Mode for Traversal Server
2017-02-25 23:41:12 -05:00
Léo Lam
a1e16c47db
SysConf: Use vectors instead of raw pointers
2017-02-26 00:39:50 +01:00
Adam Diffin
54f931e651
Fixed the remove and add buttons not disabling after removing a code.
2017-02-25 22:59:24 +00:00
Lioncash
26f17a1723
ControlGroup: Convert group type enum into an enum class
...
Gets some constants out of the ControllerEmu namespace, and modifies
ControlGroup so that it uses the enum type itself to represent the
underlying type, rather than a u32 value.
2017-02-25 01:15:04 -05:00
Lioncash
beec40f178
IniFile: Handle s64/u64 values
2017-02-25 00:03:20 -05:00
Markus Wick
51136681df
Merge pull request #4953 from lioncash/fwd
...
CachedInterpreter: Forward declare instruction struct
2017-02-24 23:36:11 +01:00
Léo Lam
6702e547cb
Fix the build on Linux when not using WX from Externals
...
No idea why we were including a Windows specific header *without* a
ifdef.
2017-02-24 18:48:26 +01:00
Jules Blok
bde8126913
VideoBackends: Remove depth range clamping hacks.
...
Oversized depth ranges are handled correctly now, we don't need to hack around them with clamps anymore.
2017-02-24 14:54:20 +01:00
Jules Blok
94522d4cf3
OGL: Add support for glDepthRangedNV to handle oversized depth ranges.
2017-02-24 14:54:16 +01:00
Markus Wick
1f04bab967
Merge pull request #4952 from ligfx/fix_10110
...
PatchEngine: check instruction at link addr is non-zero
2017-02-24 11:08:15 +01:00
Markus Wick
25fc7ed8c1
Merge pull request #4954 from lioncash/jitbase
...
JitBase: Put constructor and destructor in the cpp file
2017-02-24 11:05:57 +01:00
Lioncash
0783476464
CachedInterpreter: Forward declare instruction struct
...
Allows changes to be made to the instruction struct without recompiling
other source files.
2017-02-23 18:08:20 -05:00
Anthony
4e93002adb
Merge pull request #4800 from JosJuice/movie-dual-core-determinism
...
Remove special condition for auto dual core determinism
2017-02-23 13:19:39 -08:00
Anthony
ba5f1c6f59
Merge pull request #4864 from JosJuice/idws-on-temp-nand-only
...
WiiRoot: Only call InitializeDeterministicWiiSaves on temporary NAND
2017-02-23 13:18:23 -08:00
Anthony
27a5e33b92
Merge pull request #4877 from ligfx/forward_declare_xlib
...
Remove include X11/Xlib.h from X11Utils.h
2017-02-23 13:17:37 -08:00
Anthony
ecb7d01347
Merge pull request #4889 from ligfx/netwindow
...
NetWindow: explicitly tell wxWidgets to clean up Windows macros
2017-02-23 13:16:59 -08:00
Anthony
e9850382e3
Merge pull request #4930 from JosJuice/sideways-wiimote-name
...
Change INI keys containing "Wii Remote" back to "Wiimote"
2017-02-23 13:13:43 -08:00
Anthony
fb8369d0e0
Merge pull request #4950 from leoetlino/set-remotes-before-booting
...
Netplay: Change Wiimote sources before booting
2017-02-23 13:13:13 -08:00
Lioncash
359528b805
JitBase: Put constructor and destructor in the cpp file
...
As this is a base class with virtuals, there needs to be an out-of-line
function definition to prevent the vtable of the class being placed within
every translation unit it's used in (i.e. every JIT implementation).
2017-02-23 13:50:47 -05:00
Léo Lam
88a21dd2b9
Fix things mentioned during code review
...
Ref: https://github.com/dolphin-emu/dolphin/pull/4917
2017-02-23 18:15:12 +01:00
Léo Lam
abe6f8766a
Config: Add a few helper functions for repetitive tasks
...
Getting and setting configuration from the base config layer are common
and repetitive tasks. This commit adds some simpler to use functions to
make the new system easier to work with.
Config::Get and Config::Set are intended to make switching from
SConfig a bit less painful. They always operate on the main system.
Example usage:
// before
auto base_layer = Config::GetLayer(Config::LayerType::Base);
auto core = base_layer->GetOrCreateSection(Config::System::Main, "Core");
u8 language;
core->Get("Language", &language, 0);
SetData("IPL.LNG", language);
// now
auto base_layer = Config::GetLayer(Config::LayerType::Base);
auto core = base_layer->GetOrCreateSection(Config::System::Main, "Core");
SetData("IPL.LNG", core->Get<u8>("Language", 0));
// or simply
SetData("IPL.LNG", Config::Get<u8>("Core", "Language", 0));
2017-02-23 18:15:12 +01:00
Léo Lam
7bd34ac0b5
Config: Trigger callbacks on layer save
...
And remove an extraneous callback trigger in Config::Load.
2017-02-23 18:15:12 +01:00
Léo Lam
9c3265f1ef
Config: Keep track of deleted keys
...
This allows deleted keys to be deleted from INIs properly.
2017-02-23 18:15:12 +01:00
Léo Lam
b51c6023ba
Config: Only save settings if they have been changed
2017-02-23 18:15:12 +01:00
Ryan Houdek
8360e358ee
New configuration namespace
2017-02-23 18:15:11 +01:00
Anthony
f7a09c41a1
Merge pull request #4941 from JosJuice/no-compressed-color
...
DolphinWX: Don't use a special color for compressed games
2017-02-23 07:17:48 -08:00
Markus Wick
0a3a2fe155
Merge pull request #4922 from sepalani/more_format
...
HLE: More printf floating point types handled
2017-02-23 11:03:32 +01:00
Markus Wick
1fc2edae51
Merge pull request #4928 from lioncash/const
...
PPCAnalyst: Make SetInstructionStats' opinfo parameter a const pointer
2017-02-23 10:55:58 +01:00
Markus Wick
25a569e6e9
Merge pull request #4929 from lioncash/symboldb
...
SymbolDB: Simplify GetSymbolsFromHash
2017-02-23 10:55:28 +01:00
Markus Wick
ae8010caff
Merge pull request #4943 from lioncash/const-table
...
JIT: Make initialization instruction tables const
2017-02-23 10:27:21 +01:00
Markus Wick
51b654ed00
Merge pull request #4945 from lioncash/jit-global
...
DolphinWX: Eliminate direct usage of the JIT global
2017-02-23 10:24:55 +01:00
Markus Wick
d4453db2ea
Merge pull request #4946 from lioncash/naming
...
JitInterface: Amend ExceptionType enum value names
2017-02-23 10:23:37 +01:00
Michael Maltese
da35abbbe2
PatchEngine: check instruction at link addr is non-zero
...
Regression introduced in #4738 . Fixes
https://bugs.dolphin-emu.org/issues/10110 .
2017-02-22 21:14:57 -08:00
Léo Lam
fb46520c74
Netplay: Change Wiimote sources before booting
...
It is kind of silly to connect all of the configured Wii remotes (from
the user config; NOT netplay assigned remotes), then connect/disconnect
additional Wii remotes *after* the core has booted.
(The bWii check has been removed, because it's actually unneeded;
m_wiimote_map is always usable regardless of bWii. And we can't get
info about the currently running game without booting the core with our
current config system…)
This should fix Netplay trying to connect all configured Wii remotes.
2017-02-22 22:52:13 +01:00
JosJuice
9b0ce31906
Merge pull request #4948 from leoetlino/file
...
IOS/FFSP: Fix the "past EOF" check
2017-02-22 22:43:40 +01:00
Markus Wick
fa9b89fdf9
Merge pull request #4911 from degasus/ABI
...
JitArm64: Extract block exit link area generation.
2017-02-22 22:26:08 +01:00
Mat M
c81cf111ef
Merge pull request #4921 from waddlesplash/netmap
...
IOS/Network/Net: Use a conversion function instead of a static array for SOCKOPT mapping
2017-02-22 16:11:53 -05:00
Scott Mansell
38f399bdfc
Merge pull request #4947 from JMC47/WallaceGromitSaving
...
Force Wallace and Gromit in Pet Zoo to use smaller memory card
2017-02-23 09:52:20 +13:00
Léo Lam
b0a132875a
IOS/FFSP: Fix the "past EOF" check
...
Fixes a logic bug I introduced as part of #4942 . We were not
handling the "read past EOF" case correctly, which caused
requested_read_length to underflow in some cases.
Also fixes a comparison (though this is unlikely to change anything).
2017-02-22 20:54:02 +01:00
Augustin Cavalier
806bb2a4d0
IOS/Network/Net: Use a mapper function instead of a static array for SOCKOPT mapping.
...
Some platforms (e.g. Haiku) define SOL_SOCKET to be -1, which obviously
does not work with static arrays. Plus, this is cleaner.
2017-02-22 10:55:38 -05:00
Lioncash
70d336d2a9
DolphinWX: Eliminate direct usage of the JIT global
...
Instead, the JitInterface namespace functions should be used instead. This
gets rid of all usages of the JIT global from the wxWidgets UI code.
The null check isn't needed as the JIT core would already need to be
initialized in order to be within a paused state. The null check is just a
remnant from 2011 that existed before the check for a paused state was
added.
2017-02-21 16:15:47 -05:00
JMC47
d320a2a067
Force Wallace and Gromit to use smaller memcard.
2017-02-21 16:09:49 -05:00
Lioncash
ff0f60c9f9
JitInterface: Amend ExceptionType enum value names
...
Since ExceptionType is an enum class, its name already acts like the
common prefix.
2017-02-21 15:40:00 -05:00
Mat M
95b2b033b0
Merge pull request #4925 from RisingFog/remove_readonly_check
...
Remove IsReadOnly check when stop recording
2017-02-21 10:53:24 -05:00
Lioncash
f65c34d63d
JitArm64_Tables: Make initialization instruction tables constexpr
2017-02-21 10:23:39 -05:00
Lioncash
4b342fbbfc
JitIL_Tables: Make initialization instruction tables const
2017-02-21 09:55:08 -05:00
Lioncash
092d21253d
Jit64_Tables: Make initialization instruction tables const
2017-02-21 09:54:51 -05:00
Pierre Bourdon
8e3e1e7750
Merge pull request #4942 from leoetlino/ios-ffsp-read
...
IOS/FFSP: Fix the read handler logic
2017-02-21 11:46:30 +01:00
Jules Blok
28e6e259ed
VideoBackends: Set the maximum range when the depth range is oversized.
...
The depth values generated by the vertex shader need to be clamped correctly.
2017-02-21 02:57:23 +01:00