early-access version 4161
This commit is contained in:
parent
89a3ee2eed
commit
1770a5c4ef
2 changed files with 7 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 4160.
|
||||
This is the source code for early-access 4161.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
|
|
@ -146,11 +146,15 @@ public:
|
|||
break;
|
||||
}
|
||||
|
||||
if (released < tags.size()) {
|
||||
tags[released] = tag;
|
||||
}
|
||||
|
||||
released++;
|
||||
|
||||
if (released >= tags.size()) {
|
||||
break;
|
||||
}
|
||||
|
||||
tags[released++] = tag;
|
||||
}
|
||||
|
||||
return released;
|
||||
|
|
Loading…
Reference in a new issue