hexkyz 
							
						 
					 
					
						
						
						
						
							
						
						
							e561919a52 
							
						 
					 
					
						
						
							
							Fix logic in ldr_ro_manager  
						
						... 
						
						
						
						Fix argument type for isdigit/isxdigit 
						
					 
					
						2019-06-30 18:48:16 +01:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							18ca8aaf5b 
							
						 
					 
					
						
						
							
							stratosphere: all in on enum class CommandId  
						
						
						
					 
					
						2019-06-27 23:34:53 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							61fcf5e0f4 
							
						 
					 
					
						
						
							
							loader: completely rewrite.  
						
						
						
					 
					
						2019-06-26 15:46:19 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							1671c04e24 
							
						 
					 
					
						
						
							
							stratosphere: prefer static waitable managers  
						
						
						
					 
					
						2019-06-20 13:15:39 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							d3d6c552b7 
							
						 
					 
					
						
						
							
							stratosphere: remove trailing whitespace  
						
						
						
					 
					
						2019-06-20 13:00:32 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							60b831f369 
							
						 
					 
					
						
						
							
							ams_mitm: refactor for R_TRY  
						
						
						
					 
					
						2019-06-20 04:04:33 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							aad02cd751 
							
						 
					 
					
						
						
							
							ams_mitm: update write handle persist path  
						
						
						
					 
					
						2019-06-15 07:57:50 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							0dcb496522 
							
						 
					 
					
						
						
							
							Fix emummc nintendo dir redirection  
						
						
						
					 
					
						2019-06-14 21:20:53 -07:00 
						 
				 
			
				
					
						
							
							
								hexkyz 
							
						 
					 
					
						
						
						
						
							
						
						
							4c4f037361 
							
						 
					 
					
						
						
							
							Merge branch 'master' into emunand_dev  
						
						
						
					 
					
						2019-06-09 19:23:51 +01:00 
						 
				 
			
				
					
						
							
							
								SciresM 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							df3c8f4c94 
							
						 
					 
					
						
						
							
							Merge pull request  #555  from lioncash/header  
						
						... 
						
						
						
						bpcmitm_main: Add missing header guard 
						
					 
					
						2019-06-04 12:23:37 -07:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							89a83b0e5a 
							
						 
					 
					
						
						
							
							bpcmitm_main: Remove unnecessary includes  
						
						... 
						
						
						
						Quite a few headers are unused in this header, so we can remove them to
make compilation a tiny bit faster. 
						
					 
					
						2019-06-04 06:29:14 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							7bdd4bb2d1 
							
						 
					 
					
						
						
							
							bpcmitm_main: Add missing header guard  
						
						... 
						
						
						
						Prevents potential inclusion issues. 
						
					 
					
						2019-06-04 06:28:34 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							dd10547ac2 
							
						 
					 
					
						
						
							
							setsys_settings_items: Less resource churn with combined key/value construction  
						
						... 
						
						
						
						The previous string construction discards two temporary std::string
instances (operator+ returns by value, not by reference), and creates a
std::string that it doesn't need to (the one around key). Instead we can
just append to the end of the initial std::string itself, saving on two
unnecessary created strings.
append() has a const char* overload as well (as does operator+), so we
can just append the key string as is without creating an entire new
string. 
						
					 
					
						2019-06-03 21:37:53 -04:00 
						 
				 
			
				
					
						
							
							
								Lioncash 
							
						 
					 
					
						
						
						
						
							
						
						
							452c61db7a 
							
						 
					 
					
						
						
							
							setsys_settings_items: Simplify buffer management in LoadConfiguration()  
						
						... 
						
						
						
						We can use a std::string here instead of setting up a scope guard and
manual allocations. We also don't need to care about null-termination,
as c_str() will automatically ensure this is done when passing it into
ini_parse_string(). 
						
					 
					
						2019-06-03 21:37:12 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							837b30d075 
							
						 
					 
					
						
						
							
							Merge branch 'master' into emunand_dev  
						
						
						
					 
					
						2019-06-03 12:22:01 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							50e307b4b7 
							
						 
					 
					
						
						
							
							Update for latest libnx  
						
						
						
					 
					
						2019-06-03 12:19:05 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							4dac80df75 
							
						 
					 
					
						
						
							
							fs.mitm: add Nintendo directory redirection code  
						
						
						
					 
					
						2019-05-27 11:48:17 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							6f25e92892 
							
						 
					 
					
						
						
							
							set.mitm: language emulation ( closes   #489 )  
						
						
						
					 
					
						2019-05-22 12:13:10 -07:00 
						 
				 
			
				
					
						
							
							
								SciresM 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							6cc29185d2 
							
						 
					 
					
						
						
							
							Merge pull request  #545  from Kronos2308/simple-sd-save-flag  
						
						... 
						
						
						
						simple sd_save flag 
						
					 
					
						2019-05-17 07:34:07 -07:00 
						 
				 
			
				
					
						
							
							
								Kronos2308 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							bbb658a7e5 
							
						 
					 
					
						
						
							
							orthography  
						
						
						
					 
					
						2019-05-17 10:03:53 +01:00 
						 
				 
			
				
					
						
							
							
								Kronos2308 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							ad812c8125 
							
						 
					 
					
						
						
							
							use configuration of system_settings.ini  
						
						... 
						
						
						
						prioritize the configuration of system_settings.ini 
						
					 
					
						2019-05-17 09:28:46 +01:00 
						 
				 
			
				
					
						
							
							
								Kronos2308 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							a64fdce505 
							
						 
					 
					
						
						
							
							flag is now "redirect_save"  
						
						
						
					 
					
						2019-05-17 08:44:41 +01:00 
						 
				 
			
				
					
						
							
							
								Kronos2308 
							
						 
					 
					
						
						
						
						
							
						
						
							7e950c3bcc 
							
						 
					 
					
						
						
							
							Revert "Add files via upload"  
						
						... 
						
						
						
						This reverts commit d0d7772f98 
						
					 
					
						2019-05-17 08:38:21 +01:00 
						 
				 
			
				
					
						
							
							
								Kronos2308 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							d0d7772f98 
							
						 
					 
					
						
						
							
							Add files via upload  
						
						
						
					 
					
						2019-05-17 08:29:38 +01:00 
						 
				 
			
				
					
						
							
							
								Kronos2308 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							674175e1c6 
							
						 
					 
					
						
						
							
							simple sd_save flag  
						
						... 
						
						
						
						something that allows you to decide which title to redirect games saves and which does not 
						
					 
					
						2019-05-17 03:28:24 +01:00 
						 
				 
			
				
					
						
							
							
								leo60228 
							
						 
					 
					
						
						
						
						
							
						
						
							56d7473451 
							
						 
					 
					
						
						
							
							Do same in ams_mitm  
						
						
						
					 
					
						2019-05-12 09:04:58 -04:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							03a425a579 
							
						 
					 
					
						
						
							
							stratosphere: TODO: panic -> std::abort()  
						
						
						
					 
					
						2019-05-10 03:28:18 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							348345340d 
							
						 
					 
					
						
						
							
							fs.mitm: Implement FileStorage  
						
						
						
					 
					
						2019-04-29 12:55:02 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							7fef83885f 
							
						 
					 
					
						
						
							
							ams: improve fatal error context  
						
						
						
					 
					
						2019-04-26 07:25:38 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							b09adb6a34 
							
						 
					 
					
						
						
							
							stratosphere: only hold sm sessions open when needed  
						
						
						
					 
					
						2019-04-22 12:59:49 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							9f972831cc 
							
						 
					 
					
						
						
							
							fs.mitm: fix data abort  
						
						
						
					 
					
						2019-04-22 03:42:37 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							908de31a0e 
							
						 
					 
					
						
						
							
							pm: on 7.0.0+, npns is launched in maintenance boot ( closes   #511 )  
						
						
						
					 
					
						2019-04-20 10:36:38 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							ac07971211 
							
						 
					 
					
						
						
							
							stratosphere: custom exception handlers (reboot to fusee)  
						
						
						
					 
					
						2019-04-12 15:28:46 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							03e176d7f1 
							
						 
					 
					
						
						
							
							atmosphere: current year is 2019  
						
						
						
					 
					
						2019-04-07 19:00:49 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							05c4dfd8f8 
							
						 
					 
					
						
						
							
							Merge remote-tracking branch 'origin/master'  
						
						
						
					 
					
						2019-04-05 13:42:17 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							938169cd3c 
							
						 
					 
					
						
						
							
							fs.mitm: experimental support for save redirection to sd.  
						
						
						
					 
					
						2019-04-05 13:42:09 -07:00 
						 
				 
			
				
					
						
							
							
								Mat M 
							
						 
					 
					
						
						
						
						
							
						
						
							753958de28 
							
						 
					 
					
						
						
							
							fs_mitm/fs_dir_utils: Amend logic error within IterateDirectoryRecursivelyInternal() ( #498 )  
						
						... 
						
						
						
						This likely intended to get the size of the string and then subtract the
null terminator byte. Instead, this would always result in a sizeof of
8. 
						
					 
					
						2019-04-04 20:04:26 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							fb5e02050b 
							
						 
					 
					
						
						
							
							fs.mitm: fix logic error in CopyFile  
						
						
						
					 
					
						2019-04-04 15:41:41 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							a0f3183c79 
							
						 
					 
					
						
						
							
							strat: sha256 s/linux/libnx/g  
						
						
						
					 
					
						2019-04-04 12:02:00 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							262d6af519 
							
						 
					 
					
						
						
							
							bis_protect: guard against autorcm on rcm-patched units  
						
						
						
					 
					
						2019-04-01 17:24:15 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							81aa5c7ec7 
							
						 
					 
					
						
						
							
							set_mitm: result defs instead of magics  
						
						
						
					 
					
						2019-03-28 23:04:13 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							c6d67eab6a 
							
						 
					 
					
						
						
							
							strat: 0 -> ResultSuccess  
						
						
						
					 
					
						2019-03-28 22:39:39 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							9427a5cf46 
							
						 
					 
					
						
						
							
							strat: use TitleId defs instead of magics.  
						
						
						
					 
					
						2019-03-28 21:49:14 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							0001e93810 
							
						 
					 
					
						
						
							
							strat: use atmosphere results instead of magics  
						
						
						
					 
					
						2019-03-28 20:19:38 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							29be429d2f 
							
						 
					 
					
						
						
							
							strat: fix remaining FS result magic numbers  
						
						
						
					 
					
						2019-03-28 19:45:41 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							acffae6643 
							
						 
					 
					
						
						
							
							strat: replace kernel/dbg magic numbers with result defs  
						
						
						
					 
					
						2019-03-28 16:57:18 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							2678735f73 
							
						 
					 
					
						
						
							
							stratosphere: migrate result headers to libstrat  
						
						
						
					 
					
						2019-03-28 14:23:34 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							f2433824ba 
							
						 
					 
					
						
						
							
							fs.mitm: fix missing include in fs_shim.c  
						
						
						
					 
					
						2019-03-28 10:51:51 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							d00b183f92 
							
						 
					 
					
						
						
							
							fs.mitm: Implement DirectorySaveDataFileSystem.  
						
						
						
					 
					
						2019-03-28 10:43:33 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Scire 
							
						 
					 
					
						
						
						
						
							
						
						
							325c71b1b4 
							
						 
					 
					
						
						
							
							ams_mitm: fix erroneous comment due to copy-paste.  
						
						
						
					 
					
						2019-03-26 12:03:55 -07:00