Skip to content

Commit

Permalink
Update mem.h
Browse files Browse the repository at this point in the history
Remove header, convert multiline comments into single line comments
  • Loading branch information
DerekTurtleRoe committed Mar 18, 2021
1 parent 3b6dbf7 commit 13d6fae
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Source/Android/PluginRSP/mem.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
// Project64 - A Nintendo 64 emulator
// http://www.pj64-emu.com/
// Copyright(C) 2001-2021 Project64
// Copyright(C) 2014 Bobby Smiles
// GNU/GPLv2 licensed: https://gnu.org/licenses/gpl-2.0.html
#pragma once
#include <assert.h>

Expand Down Expand Up @@ -69,7 +64,7 @@ static inline void dmem_store_u32(CHle * hle, const uint32_t* src, uint16_t addr
store_u32(hle->dmem(), address & 0xfff, src, count);
}

/* convenient functions DRAM access */
// Convenient functions DRAM access
static inline uint8_t* dram_u8(CHle * hle, uint32_t address)
{
return u8(hle->dram(), address & 0xffffff);
Expand Down

0 comments on commit 13d6fae

Please sign in to comment.