mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 13:50:03 +00:00 
			
		
		
		
	kernel: Update to use atmosphere macros and correct Result (#7242)
* kernel: Switch to atmosphere style macros * code: Rename ResultCode to Result * code: Result constants are lower case * Address review comments * core: Remove CASCADE_CODE * R_TRY replaces completely * core: Run clang format
This commit is contained in:
		
							parent
							
								
									811303ea54
								
							
						
					
					
						commit
						5a7f615da1
					
				
					 132 changed files with 2807 additions and 2995 deletions
				
			
		|  | @ -49,7 +49,7 @@ QString IPCRecorderWidget::GetStatusStr(const IPCDebugger::RequestRecord& record | |||
|     case IPCDebugger::RequestStatus::Handling: | ||||
|         return tr("Handling"); | ||||
|     case IPCDebugger::RequestStatus::Handled: | ||||
|         if (record.translated_reply_cmdbuf[1] == RESULT_SUCCESS.raw) { | ||||
|         if (record.translated_reply_cmdbuf[1] == ResultSuccess.raw) { | ||||
|             return tr("Success"); | ||||
|         } | ||||
|         return tr("Error"); | ||||
|  | @ -88,7 +88,7 @@ void IPCRecorderWidget::OnEntryUpdated(IPCDebugger::RequestRecord record) { | |||
| 
 | ||||
|     if (record.status == IPCDebugger::RequestStatus::HLEUnimplemented || | ||||
|         (record.status == IPCDebugger::RequestStatus::Handled && | ||||
|          record.translated_reply_cmdbuf[1] != RESULT_SUCCESS.raw)) { // Unimplemented / Error
 | ||||
|          record.translated_reply_cmdbuf[1] != ResultSuccess.raw)) { // Unimplemented / Error
 | ||||
| 
 | ||||
|         auto item = ui->main->invisibleRootItem()->child(row_id); | ||||
|         for (int column = 0; column < item->columnCount(); ++column) { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue