mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-09 00:14:56 +00:00
replace bs_t with rx::EnumBitSet
This commit is contained in:
parent
3f14b99f24
commit
2965aaf3e3
46 changed files with 600 additions and 809 deletions
|
|
@ -1,7 +1,7 @@
|
|||
#include "stdafx.h"
|
||||
|
||||
#include "GDB.h"
|
||||
#include "util/bit_set.h"
|
||||
#include "rx/EnumBitSet.hpp"
|
||||
#include "util/logs.hpp"
|
||||
#include "util/StrUtil.h"
|
||||
#include "Emu/Memory/vm.h"
|
||||
|
|
@ -823,7 +823,7 @@ bool gdb_thread::cmd_vcont(gdb_cmd& cmd)
|
|||
|
||||
if (ppu)
|
||||
{
|
||||
bs_t<cpu_flag> add_flags{};
|
||||
rx::EnumBitSet<cpu_flag> add_flags{};
|
||||
|
||||
if (cmd.data[1] == 's')
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue