mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
std::stringstream ==> std::ostringstream
This commit is contained in:
parent
b3c9e674d3
commit
f673ec92d3
@ -6,7 +6,7 @@
|
||||
|
||||
static std::string COND(unsigned int cond)
|
||||
{
|
||||
std::stringstream stream;
|
||||
std::ostringstream stream;
|
||||
|
||||
switch(cond)
|
||||
{
|
||||
@ -45,7 +45,7 @@ static std::string COND(unsigned int cond)
|
||||
|
||||
static std::string REGS( uint32_t reg, int IsSource )
|
||||
{
|
||||
std::stringstream stream;
|
||||
std::ostringstream stream;
|
||||
int mode = (reg >> 6 ) & 0x07;
|
||||
|
||||
reg &= 0x3f;
|
||||
@ -184,7 +184,7 @@ static std::string REGS( uint32_t reg, int IsSource )
|
||||
|
||||
static std::string INDIRECT( uint32_t reg, int IsSource )
|
||||
{
|
||||
std::stringstream stream;
|
||||
std::ostringstream stream;
|
||||
int mode = ( reg >> 6 ) & 0x07;
|
||||
|
||||
if ( mode == 0 || mode == 3 || mode == 1)
|
||||
@ -243,7 +243,7 @@ static std::string INDIRECT( uint32_t reg, int IsSource )
|
||||
|
||||
static std::string ALU( uint32_t alu)
|
||||
{
|
||||
std::stringstream stream;
|
||||
std::ostringstream stream;
|
||||
|
||||
switch( alu )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user